Home
last modified time | relevance | path

Searched refs:hCommandPipe (Results 1 – 2 of 2) sorted by relevance

/reactos/modules/rostests/apitests/localspl/
H A Dtests.c47 HANDLE hCommandPipe = INVALID_HANDLE_VALUE; in _RunRemoteTest() local
141hCommandPipe = CreateNamedPipeW(COMMAND_PIPE_NAME, PIPE_ACCESS_OUTBOUND, PIPE_TYPE_MESSAGE | PIPE_… in _RunRemoteTest()
142 if (hCommandPipe == INVALID_HANDLE_VALUE) in _RunRemoteTest()
163 if (!ConnectNamedPipe(hCommandPipe, NULL) && GetLastError() != ERROR_PIPE_CONNECTED) in _RunRemoteTest()
170 if (!WriteFile(hCommandPipe, szTestName, lstrlenA(szTestName) + sizeof(char), &cbWritten, NULL)) in _RunRemoteTest()
190 if (hCommandPipe != INVALID_HANDLE_VALUE) in _RunRemoteTest()
191 CloseHandle(hCommandPipe); in _RunRemoteTest()
/reactos/modules/rostests/apitests/localspl/dll/
H A Dmain.c164 HANDLE hCommandPipe; in DllMain() local
172 hCommandPipe = CreateFileW(COMMAND_PIPE_NAME, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL); in DllMain()
173 if (hCommandPipe == INVALID_HANDLE_VALUE) in DllMain()
179 if (!ReadFile(hCommandPipe, szTestName, sizeof(szTestName), &cbRead, NULL)) in DllMain()
185 CloseHandle(hCommandPipe); in DllMain()