HomeSort by relevance Sort by last modified time
    Searched refs:write_pipe (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/sandbox/linux/services/
unix_domain_socket_unittest.cc 72 base::ScopedFD write_pipe(pipe_fds[1]);
75 send_fds.push_back(write_pipe.get());
78 write_pipe.reset();
86 // process ID of the sender in sender_pid. Optionally, write_pipe can be used
94 base::ScopedFD* write_pipe = NULL) {
104 if (write_pipe)
105 write_pipe->swap(*message_fds[0]);
  /external/chromium_org/content/zygote/
zygote_linux.cc 58 void CreatePipe(base::ScopedFD* read_pipe, base::ScopedFD* write_pipe) {
62 write_pipe->reset(raw_pipe[1]);
359 base::ScopedFD read_pipe, write_pipe; local
375 CreatePipe(&read_pipe, &write_pipe);
381 write_pipe.reset();
447 HANDLE_EINTR(write(write_pipe.get(), &real_pid, sizeof(real_pid)));
  /external/wpa_supplicant_8/src/drivers/
ndis_events.c 31 HANDLE read_pipe, write_pipe, event_avail; member in struct:ndis_events_data
123 if (!CreatePipe(&events->read_pipe, &events->write_pipe, NULL, 512)) {
133 CloseHandle(events->write_pipe);
144 CloseHandle(events->write_pipe);
217 if (WriteFile(events->write_pipe, buf, pos - buf, &written, NULL)) {
  /external/chromium_org/remoting/host/linux/
linux_me2me_host.py 635 read_pipe, write_pipe = os.pipe()
636 # Ensure write_pipe is closed on exec, otherwise it will be kept open by
638 old_flags = fcntl.fcntl(write_pipe, fcntl.F_GETFD)
639 fcntl.fcntl(write_pipe, fcntl.F_SETFD, old_flags | fcntl.FD_CLOEXEC)
641 self._write_file = os.fdopen(write_pipe, 'a')
    [all...]
  /external/chromium_org/base/process/
process_util_unittest.cc 540 int write_pipe = kChildPipe; local
558 int written = HANDLE_EINTR(write(write_pipe, &num_open_files,
561 int ret = IGNORE_EINTR(close(write_pipe));

Completed in 210 milliseconds