Lines Matching refs:pipe
35 * function (i.e. Write() to a non-connected server end of a pipe) returns
67 Bstr pipeName = Utf8StrFmt("\\\\.\\pipe\\%s", aName);
69 HANDLE pipe = CreateNamedPipe(pipeName.raw(),
77 if (pipe == INVALID_HANDLE_VALUE)
82 mReadEnd = pipe;
83 mWriteEnd = pipe;
96 Bstr pipeName = Utf8StrFmt("\\\\.\\pipe\\%s", aName);
98 HANDLE pipe = CreateFile(pipeName.raw(),
106 if (pipe == INVALID_HANDLE_VALUE)
111 mReadEnd = pipe;
112 mWriteEnd = pipe;