Home | History | Annotate | Download | only in src

Lines Matching refs:HANDLE

257 // severity. On Windows, the message is read from a pipe handle. On other
505 // necessary to acquire the handle to the write end of the pipe.
537 // Handle to the write end of the pipe to the child process.
539 // Child process handle.
542 // acquired the handle to the write end of the pipe. After seeing this
557 const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };
570 // We release the handle on our side and continue.
579 // handle or not.
614 HANDLE read_handle, write_handle;
674 NULL, // Retuned process handle is not inheritable.
675 NULL, // Retuned thread handle is not inheritable.
1062 // handle. This function is called in the child process only.
1076 GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t));
1078 const HANDLE write_handle =
1079 reinterpret_cast<HANDLE>(write_handle_as_size_t);
1080 HANDLE dup_write_handle;
1082 // The newly initialized handle is accessible only in in the parent
1092 "Unable to duplicate the pipe handle %Iu from the parent process %u",
1096 const HANDLE event_handle = reinterpret_cast<HANDLE>(event_handle_as_size_t);
1097 HANDLE dup_event_handle;
1105 "Unable to duplicate the event handle %Iu from the parent process %u",
1113 "Unable to convert pipe handle %Iu to a file descriptor",