Home
last modified time | relevance | path

Searched refs:pipeHandle (Results 1 - 2 of 2) sorted by relevance

/ide/tools/previewer/util/windows/
H A DLocalSocket.cpp20 LocalSocket::LocalSocket() : pipeHandle(nullptr) {} in LocalSocket()
29 pipeHandle = CreateFileW(tempName.c_str(), openModeWin, 0, nullptr, OPEN_EXISTING, 0, NULL); in ConnectToServer()
30 if (pipeHandle == INVALID_HANDLE_VALUE) { in ConnectToServer()
36 if (!SetNamedPipeHandleState(pipeHandle, &tranMode, nullptr, nullptr)) { in ConnectToServer()
61 CloseHandle(pipeHandle); in DisconnectFromServer()
72 if (!PeekNamedPipe(pipeHandle, nullptr, 0, nullptr, &readSize, nullptr)) { in ReadData()
80 if (!ReadFile(pipeHandle, data, static_cast<DWORD>(length), &readSize, NULL)) { in ReadData()
96 if (!WriteFile(pipeHandle, data, static_cast<DWORD>(length), &writeSize, nullptr)) { in WriteData()
/ide/tools/previewer/util/
H A DLocalSocket.h63 HANDLE pipeHandle; member in LocalSocket

Completed in 1 milliseconds