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

  /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/tools/
me2me_virtual_host.py 577 read_pipe, write_pipe = os.pipe()
578 # Ensure write_pipe is closed on exec, otherwise it will be kept open by
580 old_flags = fcntl.fcntl(write_pipe, fcntl.F_GETFD)
581 fcntl.fcntl(write_pipe, fcntl.F_SETFD, old_flags | fcntl.FD_CLOEXEC)
583 self._write_file = os.fdopen(write_pipe, 'a')
    [all...]
  /external/chromium/base/
process_util_unittest.cc 402 int write_pipe = kChildPipe; local
414 int written = HANDLE_EINTR(write(write_pipe, &num_open_files,
417 int ret = HANDLE_EINTR(close(write_pipe));
  /external/chromium_org/base/process/
process_util_unittest.cc 513 int write_pipe = kChildPipe; local
525 int written = HANDLE_EINTR(write(write_pipe, &num_open_files,
528 int ret = HANDLE_EINTR(close(write_pipe));

Completed in 719 milliseconds