Searched refs:uv_getaddrinfo_t (Results 1 – 14 of 14) sorted by relevance
/libuv/test/ |
H A D | test-getaddrinfo.c | 33 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 D | benchmark-getaddrinfo.c | 33 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 D | test-thread.c | 37 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 D | test-metrics.c | 300 static void fs_addrinfo_cb(uv_getaddrinfo_t* req, in fs_addrinfo_cb() 315 uv_getaddrinfo_t addrinfo_req; in TEST_IMPL()
|
H A D | test-threadpool-cancel.c | 133 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 D | getaddrinfo.c | 99 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 D | dns.rst | 13 .. 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 D | request.rst | 75 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 D | getaddrinfo.c | 83 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 D | main.c | 43 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 D | threadpool.c | 398 loop = ((uv_getaddrinfo_t*) req)->loop; in uv_cancel() 399 wreq = &((uv_getaddrinfo_t*) req)->work_req; in uv_cancel()
|
/libuv/include/ |
H A D | uv.h | 240 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 D | basics.rst | 169 typedef struct uv_getaddrinfo_s uv_getaddrinfo_t;
|
H A D | threads.rst | 280 ``uv_cancel()`` can also be used with ``uv_fs_t`` and ``uv_getaddrinfo_t``
|
Completed in 27 milliseconds