Lines Matching defs:server
277 /* Create server pipe handle. */
347 /* Make the server side the inbound (read) end, */
400 /* The server needs inbound (read) access too, otherwise CreateNamedPipe()
431 /* The server end is now readable and/or writable. */
551 /* Stash a handle in the server object for use from places such as
695 /* Creates a pipe server. */
748 * If this fails then there's already a pipe server for the given pipe name.
862 /* Wait for the server to make a pipe instance available. */
960 /* Cleans up uv_pipe_t (server or connection) and all resources associated with
1049 int uv__pipe_accept(uv_pipe_t* server, uv_stream_t* client) {
1050 uv_loop_t* loop = server->loop;
1057 if (server->ipc) {
1058 if (QUEUE_EMPTY(&server->pipe.conn.ipc_xfer_queue)) {
1063 q = QUEUE_HEAD(&server->pipe.conn.ipc_xfer_queue);
1065 server->pipe.conn.ipc_xfer_queue_length--;
1081 req = server->pipe.serv.pending_accepts;
1093 server->pipe.serv.pending_accepts = req->next_pending;
1097 server->handle = INVALID_HANDLE_VALUE;
1098 if (!(server->flags & UV_HANDLE_CLOSING)) {
1099 uv__pipe_queue_accept(loop, server, req, FALSE);