HomeSort by: relevance | last modified time | path
    Searched defs:alloc_buffer (Results 1 - 9 of 9) sorted by relevancy

  /src/external/mit/libuv/dist/docs/code/dns/
main.c 8 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { function
39 uv_read_start((uv_stream_t*) req->handle, alloc_buffer, on_read);
  /src/external/mit/libuv/dist/docs/code/multi-echo-server/
worker.c 22 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { function
74 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read);
86 uv_read_start((uv_stream_t*)&queue, alloc_buffer, on_new_connection);
main.c 26 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { function
  /src/external/mit/libuv/dist/docs/code/pipe-echo-server/
main.c 25 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { function
63 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read);
  /src/external/mit/libuv/dist/test/
test-iouring-pollhup.c 42 static void alloc_buffer(uv_handle_t* handle, function
70 ASSERT_OK(uv_read_start((uv_stream_t*) &p2, alloc_buffer, read_data2));
101 ASSERT_OK(uv_read_start((uv_stream_t*) &p1, alloc_buffer, read_data));
test-pipe-close-stdout-read-stdin.c 36 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t* buf) function
92 r = uv_read_start((uv_stream_t *)&stdin_pipe, alloc_buffer, read_stdin);
  /src/external/mit/libuv/dist/docs/code/tcp-echo-server/
main.c 23 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { function
65 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read);
  /src/external/mit/libuv/dist/docs/code/udp-dhcp/
main.c 12 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { function
44 alloc_buffer(NULL, 256, &buffer);
112 uv_udp_recv_start(&recv_socket, alloc_buffer, on_read);
  /src/external/mit/libuv/dist/docs/code/uvtee/
main.c 18 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { function
75 uv_read_start((uv_stream_t*)&stdin_pipe, alloc_buffer, read_stdin);

Completed in 21 milliseconds