Home | History | Annotate | Download | only in base

Lines Matching full:handles

36   Handle handles[2];
58 handles[0] = CreateNamedPipeW(
67 if (handles[0] == INVALID_HANDLE_VALUE &&
72 } while (handles[0] == INVALID_HANDLE_VALUE);
73 handles[1] = CreateFileW(name,
81 if (handles[1] == INVALID_HANDLE_VALUE) {
82 CloseHandle(handles[0]);
85 if (ConnectNamedPipe(handles[0], NULL) == FALSE) {
88 CloseHandle(handles[0]);
89 CloseHandle(handles[1]);
93 // Copy the handles out for successful return.
94 tmp_sockets[0]->handle_ = handles[0];
96 tmp_sockets[1]->handle_ = handles[1];