| /third_party/libuv/test/ |
| H A D | test-udp-send-and-recv.c | 44 static void alloc_cb(uv_handle_t* handle, in alloc_cb() argument 55 static void close_cb(uv_handle_t* handle) { in close_cb() argument 62 static void cl_recv_cb(uv_udp_t* handle, in cl_recv_cb() argument 116 sv_recv_cb(uv_udp_t* handle, ssize_t nread, const uv_buf_t* rcvbuf, const struct sockaddr* addr, unsigned flags) sv_recv_cb() argument [all...] |
| H A D | test-udp-send-immediate.c | 40 static void alloc_cb(uv_handle_t* handle, in alloc_cb() argument 51 static void close_cb(uv_handle_t* handle) { in close_cb() argument 67 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb() argument [all...] |
| H A D | test-ipc-heavy-traffic-deadlock-bug.c | 62 static void do_write(uv_stream_t* handle) { in do_write() argument 81 static void alloc_cb(uv_handle_t* handle, in alloc_cb() argument 93 static void read_cb(uv_stream_t* handle, ssize_t nread, const uv_buf_t* buf) { in read_cb() argument 112 static void do_writes_and_reads(uv_stream_t* handle) { in do_writes_and_reads() argument [all...] |
| H A D | test-tcp-bind-error.c | 32 static void close_cb(uv_handle_t* handle) { in close_cb() argument
|
| H A D | test-signal.c | 47 static void signum_test_cb(uv_signal_t* handle, int signum) { in signum_test_cb() argument 88 uv_timer_t handle; member 95 uv_signal_t handle; member 101 static void signal_cb(uv_signal_t* handle, int signum) { in signal_cb() argument 114 static void signal_cb_one_shot(uv_signal_t* handle, int signum) { in signal_cb_one_shot() argument 123 timer_cb(uv_timer_t* handle) timer_cb() argument [all...] |
| H A D | test-tcp-alloc-cb-fail.c | 40 static void close_cb(uv_handle_t* handle) { in close_cb() argument 48 static void conn_alloc_cb(uv_handle_t* handle, size_t size, uv_buf_t* buf) { in conn_alloc_cb() argument
|
| H A D | benchmark-tcp-write-batch.c | 91 static void close_cb(uv_handle_t* handle) { in close_cb() argument
|
| H A D | benchmark-async.c | 43 static void worker_async_cb(uv_async_t* handle) { in worker_async_cb() argument 55 static void main_async_cb(uv_async_t* handle) { in main_async_cb() argument
|
| H A D | test-delayed-accept.c | 33 static void alloc_cb(uv_handle_t* handle, size_t size, uv_buf_t* buf) { in alloc_cb() argument 39 static void close_cb(uv_handle_t* handle) { in close_cb() argument
|
| H A D | test-fs-poll.c | 73 static void close_cb(uv_handle_t* handle) { in close_cb() argument 78 static void timer_cb(uv_timer_t* handle) { in timer_cb() argument 84 static void poll_cb_fail(uv_fs_poll_t* handle, in poll_cb_fail() argument 91 static void poll_cb_noop(uv_fs_poll_t* handle, in poll_cb_noop() argument 98 static void poll_cb(uv_fs_poll_t* handle, in poll_cb() argument [all...] |
| H A D | test-poll-oob.c | 68 static void poll_cb(uv_poll_t* handle, int status, int events) { in poll_cb() argument 135 static void connection_cb(uv_stream_t* handle, int status) { in connection_cb() argument
|
| H A D | test-readable-on-eof.c | 41 static void alloc_cb(uv_handle_t* handle, in alloc_cb() argument 49 static void close_cb(uv_handle_t* handle) { in close_cb() argument 53 static void read_cb(uv_stream_t* handle, ssize_t nread, const uv_buf_t* buf) { in read_cb() argument
|
| H A D | test-tty.c | 52 HANDLE handle; in TEST_IMPL() local 150 static void tty_raw_alloc(uv_handle_t* handle, size_t size, uv_buf_t* buf) { in tty_raw_alloc() argument 170 HANDLE handle; in TEST_IMPL() local 227 HANDLE handle; TEST_IMPL() local 273 HANDLE handle; TEST_IMPL() local 314 HANDLE handle; TEST_IMPL() local [all...] |
| H A D | test-udp-alloc-cb-fail.c | 44 static void sv_alloc_cb(uv_handle_t* handle, in sv_alloc_cb() argument 54 static void cl_alloc_cb(uv_handle_t* handle, in cl_alloc_cb() argument 61 static void close_cb(uv_handle_t* handle) { in close_cb() argument 68 static void cl_recv_cb(uv_udp_t* handle, in cl_recv_cb() argument 109 sv_recv_cb(uv_udp_t* handle, ssize_t nread, const uv_buf_t* rcvbuf, const struct sockaddr* addr, unsigned flags) sv_recv_cb() argument [all...] |
| H A D | test-udp-connect6.c | 43 static void alloc_cb(uv_handle_t* handle, in alloc_cb() argument 54 static void close_cb(uv_handle_t* handle) { in close_cb() argument 83 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb() argument [all...] |
| H A D | test-udp-connect.c | 43 static void alloc_cb(uv_handle_t* handle, in alloc_cb() argument 54 static void close_cb(uv_handle_t* handle) { in close_cb() argument 83 static void sv_recv_cb(uv_udp_t* handle, in sv_recv_cb() argument [all...] |
| H A D | test-shutdown-simultaneous.c | 38 static void alloc_cb(uv_handle_t* handle, size_t size, uv_buf_t* buf) { in alloc_cb() argument
|
| H A D | test-tcp-write-in-a-row.c | 42 static void close_cb(uv_handle_t* handle) { in close_cb() argument 86 static void alloc_cb(uv_handle_t* handle, size_t size, uv_buf_t* buf) { in alloc_cb() argument
|
| H A D | test-tcp-write-queue-order.c | 45 static void close_cb(uv_handle_t* handle) { in close_cb() argument 49 static void timer_cb(uv_timer_t* handle) { in timer_cb() argument
|
| /third_party/libuv/docs/code/udp-dhcp/ |
| H A D | main.c | 12 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() argument
|
| /third_party/libuv/docs/code/tcp-echo-server/ |
| H A D | main.c | 23 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() argument 28 void on_close(uv_handle_t* handle) { in on_close() argument
|
| /third_party/libuv/src/ |
| H A D | timer.c | 61 int uv_timer_init(uv_loop_t* loop, uv_timer_t* handle) { in uv_timer_init() argument 70 int uv_timer_start(uv_timer_t* handle, in uv_timer_start() argument 109 uv_timer_stop(uv_timer_t* handle) uv_timer_stop() argument 122 uv_timer_again(uv_timer_t* handle) uv_timer_again() argument 135 uv_timer_set_repeat(uv_timer_t* handle, uint64_t repeat) uv_timer_set_repeat() argument 140 uv_timer_get_repeat(const uv_timer_t* handle) uv_timer_get_repeat() argument 145 uv_timer_get_due_in(const uv_timer_t* handle) uv_timer_get_due_in() argument 155 const uv_timer_t* handle; uv__next_timeout() local 176 uv_timer_t* handle; uv__run_timers() local 197 uv__timer_close(uv_timer_t* handle) uv__timer_close() argument [all...] |
| H A D | uv-data-getter-setters.c | 36 uv_handle_type uv_handle_get_type(const uv_handle_t* handle) { in uv_handle_get_type() argument 40 void* uv_handle_get_data(const uv_handle_t* handle) { in uv_handle_get_data() argument 44 uv_loop_t* uv_handle_get_loop(const uv_handle_t* handle) { in uv_handle_get_loop() argument 48 void uv_handle_set_data(uv_handle_t* handle, void* data) { in uv_handle_set_data() argument 81 size_t uv_udp_get_send_queue_size(const uv_udp_t* handle) { in uv_udp_get_send_queue_size() argument 85 uv_udp_get_send_queue_count(const uv_udp_t* handle) uv_udp_get_send_queue_count() argument [all...] |
| /third_party/libuv/docs/code/uvtee/ |
| H A D | main.c | 18 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() argument
|
| /third_party/libuv/src/win/ |
| H A D | stream.c | 70 int uv__read_start(uv_stream_t* handle, in uv__read_start() argument 94 int uv_read_stop(uv_stream_t* handle) { in uv_read_stop() argument 114 uv_write(uv_write_t* req, uv_stream_t* handle, const uv_buf_t bufs[], unsigned int nbufs, uv_write_cb cb) uv_write() argument 146 uv_write2(uv_write_t* req, uv_stream_t* handle, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle, uv_write_cb cb) uv_write2() argument 203 uv_shutdown(uv_shutdown_t* req, uv_stream_t* handle, uv_shutdown_cb cb) uv_shutdown() argument 232 uv_is_readable(const uv_stream_t* handle) uv_is_readable() argument 237 uv_is_writable(const uv_stream_t* handle) uv_is_writable() argument 242 uv_stream_set_blocking(uv_stream_t* handle, int blocking) uv_stream_set_blocking() argument [all...] |