Home | History | Annotate | Download | only in src

Lines Matching refs:HANDLE

270 // severity. On Windows, the message is read from a pipe handle. On other
553 // necessary to acquire the handle to the write end of the pipe.
585 // Handle to the write end of the pipe to the child process.
587 // Child process handle.
590 // acquired the handle to the write end of the pipe. After seeing this
605 const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };
618 // We release the handle on our side and continue.
627 // handle or not.
662 HANDLE read_handle, write_handle;
722 NULL, // Retuned process handle is not inheritable.
723 NULL, // Retuned thread handle is not inheritable.
1113 // handle. This function is called in the child process only.
1127 GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t));
1129 const HANDLE write_handle =
1130 reinterpret_cast<HANDLE>(write_handle_as_size_t);
1131 HANDLE dup_write_handle;
1133 // The newly initialized handle is accessible only in in the parent
1143 "Unable to duplicate the pipe handle %Iu from the parent process %u",
1147 const HANDLE event_handle = reinterpret_cast<HANDLE>(event_handle_as_size_t);
1148 HANDLE dup_event_handle;
1156 "Unable to duplicate the event handle %Iu from the parent process %u",
1164 "Unable to convert pipe handle %Iu to a file descriptor",