Searched refs:pipe_handle_ (Results 1 – 4 of 4) sorted by relevance
/device/google/cuttlefish/common/libs/security/ |
D | keymaster_channel_windows.cpp | 47 assert(pipe_handle_ == NULL); in WaitForConnection() 48 pipe_handle_ = pipe_handle; in WaitForConnection() 51 if (GetNamedPipeInfo(pipe_handle_, in WaitForConnection() 80 ConnectNamedPipe(pipe_handle_, &pipe_overlapped_); in WaitForConnection() 99 if (pipe_handle_) { in ~KeymasterWindowsChannel() 100 CloseHandle(pipe_handle_); in ~KeymasterWindowsChannel() 131 if (!WriteFile(pipe_handle_, to_send_bytes, write_size, NULL, in SendMessage() 158 if (ReadFile(pipe_handle_, buffer, size, NULL, &pipe_overlapped_) == FALSE) { in ReadFromPipe() 170 if (GetOverlappedResult(pipe_handle_, &pipe_overlapped_, &unused_bytes_read, in ReadFromPipe()
|
D | gatekeeper_channel_windows.cpp | 34 if (pipe_handle_) { in ~GatekeeperWindowsChannel() 35 CloseHandle(pipe_handle_); in ~GatekeeperWindowsChannel() 55 assert(pipe_handle_ == NULL); in WaitForConnection() 56 pipe_handle_ = pipe_handle; in WaitForConnection() 59 if (GetNamedPipeInfo(pipe_handle_, in WaitForConnection() 88 ConnectNamedPipe(pipe_handle_, &pipe_overlapped_); in WaitForConnection() 137 if (!WriteFile(pipe_handle_, to_send_bytes, write_size, NULL, in SendMessage() 164 if (ReadFile(pipe_handle_, buffer, size, NULL, &pipe_overlapped_) == FALSE) { in ReadFromPipe() 176 if (GetOverlappedResult(pipe_handle_, &pipe_overlapped_, &unused_bytes_read, in ReadFromPipe()
|
D | keymaster_channel_windows.h | 59 HANDLE pipe_handle_ = NULL; variable
|
D | gatekeeper_channel_windows.h | 54 HANDLE pipe_handle_ = NULL; variable
|