Home
last modified time | relevance | path

Searched refs:uv_getaddrinfo_t (Results 1 – 14 of 14) sorted by relevance

/libuv/test/
H A Dtest-getaddrinfo.c33 static uv_getaddrinfo_t* getaddrinfo_handle;
34 static uv_getaddrinfo_t getaddrinfo_handles[CONCURRENT_COUNT];
39 static void getaddrinfo_fail_cb(uv_getaddrinfo_t* req, in getaddrinfo_fail_cb()
51 static void getaddrinfo_basic_cb(uv_getaddrinfo_t* handle, in getaddrinfo_basic_cb()
61 static void getaddrinfo_cuncurrent_cb(uv_getaddrinfo_t* handle, in getaddrinfo_cuncurrent_cb()
90 uv_getaddrinfo_t req; in TEST_IMPL()
119 uv_getaddrinfo_t req; in TEST_IMPL()
142 getaddrinfo_handle = (uv_getaddrinfo_t*)malloc(sizeof(uv_getaddrinfo_t)); in TEST_IMPL()
166 uv_getaddrinfo_t req; in TEST_IMPL()
H A Dbenchmark-getaddrinfo.c33 static uv_getaddrinfo_t handles[CONCURRENT_CALLS];
41 static void getaddrinfo_initiate(uv_getaddrinfo_t* handle);
44 static void getaddrinfo_cb(uv_getaddrinfo_t* handle, int status, in getaddrinfo_cb()
56 static void getaddrinfo_initiate(uv_getaddrinfo_t* handle) { in getaddrinfo_initiate()
H A Dtest-thread.c37 uv_getaddrinfo_t handle;
55 static void getaddrinfo_cb(uv_getaddrinfo_t* handle,
78 static void getaddrinfo_cb(uv_getaddrinfo_t* handle, in getaddrinfo_cb()
H A Dtest-metrics.c300 static void fs_addrinfo_cb(uv_getaddrinfo_t* req, in fs_addrinfo_cb()
315 uv_getaddrinfo_t addrinfo_req; in TEST_IMPL()
H A Dtest-threadpool-cancel.c133 static void getaddrinfo_cb(uv_getaddrinfo_t* req, in getaddrinfo_cb()
201 uv_getaddrinfo_t reqs[4]; in TEST_IMPL()
/libuv/src/unix/
H A Dgetaddrinfo.c99 uv_getaddrinfo_t* req; in uv__getaddrinfo_work()
102 req = container_of(w, uv_getaddrinfo_t, work_req); in uv__getaddrinfo_work()
109 uv_getaddrinfo_t* req; in uv__getaddrinfo_done()
111 req = container_of(w, uv_getaddrinfo_t, work_req); in uv__getaddrinfo_done()
139 uv_getaddrinfo_t* req, in uv_getaddrinfo()
/libuv/docs/src/
H A Ddns.rst13 .. c:type:: uv_getaddrinfo_t
17 .. c:type:: void (*uv_getaddrinfo_cb)(uv_getaddrinfo_t* req, int status, struct addrinfo* res)
37 .. c:member:: uv_loop_t* uv_getaddrinfo_t.loop
42 .. c:member:: struct addrinfo* uv_getaddrinfo_t.addrinfo
72 .. c:function:: int uv_getaddrinfo(uv_loop_t* loop, uv_getaddrinfo_t* req, uv_getaddrinfo_cb getadd…
H A Drequest.rst75 Only cancellation of :c:type:`uv_fs_t`, :c:type:`uv_getaddrinfo_t`,
87 * A :c:type:`uv_work_t`, :c:type:`uv_getaddrinfo_t`,
/libuv/src/win/
H A Dgetaddrinfo.c83 uv_getaddrinfo_t* req; in uv__getaddrinfo_work()
87 req = container_of(w, uv_getaddrinfo_t, work_req); in uv__getaddrinfo_work()
105 uv_getaddrinfo_t* req = container_of(w, uv_getaddrinfo_t, work_req); in uv__getaddrinfo_done()
241 uv_getaddrinfo_t* req, in uv_getaddrinfo()
/libuv/docs/code/dns/
H A Dmain.c43 void on_resolved(uv_getaddrinfo_t *resolver, int status, struct addrinfo *res) { in on_resolved()
71 uv_getaddrinfo_t resolver; in main()
/libuv/src/
H A Dthreadpool.c398 loop = ((uv_getaddrinfo_t*) req)->loop; in uv_cancel()
399 wreq = &((uv_getaddrinfo_t*) req)->work_req; in uv_cancel()
/libuv/include/
H A Duv.h240 typedef struct uv_getaddrinfo_s uv_getaddrinfo_t; typedef
346 typedef void (*uv_getaddrinfo_cb)(uv_getaddrinfo_t* req,
985 uv_getaddrinfo_t* req,
/libuv/docs/src/guide/
H A Dbasics.rst169 typedef struct uv_getaddrinfo_s uv_getaddrinfo_t;
H A Dthreads.rst280 ``uv_cancel()`` can also be used with ``uv_fs_t`` and ``uv_getaddrinfo_t``

Completed in 27 milliseconds