Home
last modified time | relevance | path

Searched refs:uv_getnameinfo_t (Results 1 – 13 of 13) sorted by relevance

/third_party/libuv/src/unix/
Dgetnameinfo.c32 uv_getnameinfo_t* req; in uv__getnameinfo_work()
36 req = container_of(w, uv_getnameinfo_t, work_req); in uv__getnameinfo_work()
56 uv_getnameinfo_t* req; in uv__getnameinfo_done()
60 req = container_of(w, uv_getnameinfo_t, work_req); in uv__getnameinfo_done()
82 uv_getnameinfo_t* req, in uv_getnameinfo()
/third_party/libuv/src/win/
Dgetnameinfo.c42 uv_getnameinfo_t* req; in uv__getnameinfo_work()
47 req = container_of(w, uv_getnameinfo_t, work_req); in uv__getnameinfo_work()
91 uv_getnameinfo_t* req; in uv__getnameinfo_done()
95 req = container_of(w, uv_getnameinfo_t, work_req); in uv__getnameinfo_done()
118 uv_getnameinfo_t* req, in uv_getnameinfo()
/third_party/libuv/docs/src/
Ddns.rst23 .. c:type:: uv_getnameinfo_t
27 .. c:type:: void (*uv_getnameinfo_cb)(uv_getnameinfo_t* req, int status, const char* hostname, cons…
49 .. c:member:: uv_loop_t* uv_getnameinfo_t.loop
54 .. c:member:: char[NI_MAXHOST] uv_getnameinfo_t.host
60 .. c:member:: char[NI_MAXSERV] uv_getnameinfo_t.service
97 .. c:function:: int uv_getnameinfo(uv_loop_t* loop, uv_getnameinfo_t* req, uv_getnameinfo_cb getnam…
Drequest.rst72 :c:type:`uv_getnameinfo_t`, :c:type:`uv_random_t` and :c:type:`uv_work_t`
84 :c:type:`uv_getnameinfo_t` or :c:type:`uv_random_t` request has its
/third_party/libuv/test/
Dtest-getnameinfo.c35 static uv_getnameinfo_t req;
37 static void getnameinfo_req(uv_getnameinfo_t* handle, in getnameinfo_req()
Dtest-threadpool-cancel.c106 static void getnameinfo_cb(uv_getnameinfo_t* handle, in getnameinfo_cb()
198 uv_getnameinfo_t reqs[4]; in TEST_IMPL()
/third_party/libuv/src/
Dthreadpool.c377 loop = ((uv_getnameinfo_t*) req)->loop; in uv_cancel()
378 wreq = &((uv_getnameinfo_t*) req)->work_req; in uv_cancel()
/third_party/node/src/
Dnode_report_utils.cc23 uv_getnameinfo_t endpoint; in ReportEndpoint()
Dcares_wrap.h209 class GetNameInfoReqWrap final : public ReqWrap<uv_getnameinfo_t> {
Dcares_wrap.cc1502 void AfterGetNameInfo(uv_getnameinfo_t* req, in AfterGetNameInfo()
/third_party/libuv/include/
Duv.h235 typedef struct uv_getnameinfo_s uv_getnameinfo_t; typedef
338 typedef void (*uv_getnameinfo_cb)(uv_getnameinfo_t* req,
935 uv_getnameinfo_t* req,
/third_party/libuv/docs/src/guide/
Dbasics.rst170 typedef struct uv_getnameinfo_s uv_getnameinfo_t;
/third_party/libuv/
DChangeLog3414 * doc: document uv_getnameinfo_t.{host|service} (Saúl Ibarra Corretgé)