connection_cb     232 include/uv-unix.h   uv_connection_cb connection_cb;                                             \
connection_cb     371 include/uv-win.h   uv_connection_cb connection_cb;
connection_cb     113 src/unix/pipe.c   handle->connection_cb = cb;
connection_cb     226 src/unix/pipe.c       pipe->connection_cb((uv_stream_t*)pipe, -errno);
connection_cb     231 src/unix/pipe.c   pipe->connection_cb((uv_stream_t*)pipe, 0);
connection_cb     118 src/unix/stream.c   stream->connection_cb = NULL;
connection_cb     532 src/unix/stream.c       stream->connection_cb(stream, err);
connection_cb     538 src/unix/stream.c     stream->connection_cb(stream, 0);
connection_cb     225 src/unix/tcp.c   tcp->connection_cb = cb;
connection_cb     764 src/win/pipe.c     handle->connection_cb = cb;
connection_cb     781 src/win/pipe.c   handle->connection_cb = cb;
connection_cb    1552 src/win/pipe.c     if (handle->connection_cb) {
connection_cb    1553 src/win/pipe.c       handle->connection_cb((uv_stream_t*)handle, 0);
connection_cb     502 src/win/tcp.c      handle->connection_cb = cb;
connection_cb     531 src/win/tcp.c    handle->connection_cb = cb;
connection_cb    1066 src/win/tcp.c        if (handle->connection_cb) {
connection_cb    1068 src/win/tcp.c          handle->connection_cb((uv_stream_t*)handle,
connection_cb    1082 src/win/tcp.c      if (handle->connection_cb) {
connection_cb    1083 src/win/tcp.c        handle->connection_cb((uv_stream_t*)handle, 0);
connection_cb     373 test/benchmark-pump.c   r = uv_listen((uv_stream_t*)&tcpServer, MAX_WRITE_HANDLES, connection_cb);
connection_cb     394 test/benchmark-pump.c   r = uv_listen((uv_stream_t*)&pipeServer, MAX_WRITE_HANDLES, connection_cb);
connection_cb      35 test/blackhole-server.c static void connection_cb(uv_stream_t* stream, int status);
connection_cb     111 test/blackhole-server.c   r = uv_listen((uv_stream_t*)&tcp_server, 128, connection_cb);
connection_cb     115 test/test-delayed-accept.c   r = uv_listen((uv_stream_t*)server, 128, connection_cb);
connection_cb      57 test/test-multiple-listen.c   r = uv_listen((uv_stream_t*)&server, 128, connection_cb);
connection_cb      60 test/test-multiple-listen.c   r = uv_listen((uv_stream_t*)&server, 128, connection_cb);
connection_cb      88 test/test-tcp-close.c   r = uv_listen((uv_stream_t*)handle, 128, connection_cb);
connection_cb     102 test/test-tcp-unexpected-read.c   ASSERT(0 == uv_listen((uv_stream_t*) &server_handle, 1, connection_cb));
connection_cb      29 test/test-tcp-write-to-half-open-connection.c static void connection_cb(uv_stream_t* server, int status);
connection_cb     115 test/test-tcp-write-to-half-open-connection.c   r = uv_listen((uv_stream_t*)&tcp_server, 1, connection_cb);