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

  /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)) {

Completed in 47 milliseconds