Lines Matching defs:server
285 /* Create server pipe handle. */
355 /* Make the server side the inbound (read) end, */
408 /* The server needs inbound (read) access too, otherwise CreateNamedPipe()
439 /* The server end is now readable and/or writable. */
559 /* Stash a handle in the server object for use from places such as
703 /* Creates a pipe server. */
780 * If this fails then there's already a pipe server for the given pipe name.
952 /* Wait for the server to make a pipe instance available. */
1054 /* Cleans up uv_pipe_t (server or connection) and all resources associated with
1143 int uv__pipe_accept(uv_pipe_t* server, uv_stream_t* client) {
1144 uv_loop_t* loop = server->loop;
1151 if (server->ipc) {
1152 if (uv__queue_empty(&server->pipe.conn.ipc_xfer_queue)) {
1157 q = uv__queue_head(&server->pipe.conn.ipc_xfer_queue);
1159 server->pipe.conn.ipc_xfer_queue_length--;
1176 req = server->pipe.serv.pending_accepts;
1188 server->pipe.serv.pending_accepts = req->next_pending;
1192 server->handle = INVALID_HANDLE_VALUE;
1193 if (!(server->flags & UV_HANDLE_CLOSING)) {
1194 uv__pipe_queue_accept(loop, server, req, FALSE);