Home | History | Annotate | Download | only in src

Lines Matching refs:HANDLE

308 // severity. On Windows, the message is read from a pipe handle. On other
591 // necessary to acquire the handle to the write end of the pipe.
623 // Handle to the write end of the pipe to the child process.
625 // Child process handle.
628 // acquired the handle to the write end of the pipe. After seeing this
643 const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };
656 // We release the handle on our side and continue.
665 // handle or not.
700 HANDLE read_handle, write_handle;
756 NULL, // Retuned process handle is not inheritable.
757 NULL, // Retuned thread handle is not inheritable.
1225 // handle. This function is called in the child process only.
1239 GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t));
1241 const HANDLE write_handle =
1242 reinterpret_cast<HANDLE>(write_handle_as_size_t);
1243 HANDLE dup_write_handle;
1245 // The newly initialized handle is accessible only in in the parent
1255 "Unable to duplicate the pipe handle %Iu from the parent process %u",
1259 const HANDLE event_handle = reinterpret_cast<HANDLE>(event_handle_as_size_t);
1260 HANDLE dup_event_handle;
1268 "Unable to duplicate the event handle %Iu from the parent process %u",
1276 "Unable to convert pipe handle %Iu to a file descriptor",