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

  /external/chromium/net/test/
test_server_posix.cc 102 int pipefd[2]; local
103 if (pipe(pipefd) != 0) {
109 child_fd_ = pipefd[0];
111 file_util::ScopedFD write_closer(&pipefd[1]);
113 map_write_fd.push_back(std::make_pair(pipefd[1], pipefd[1]));
116 base::IntToString(pipefd[1]));
  /bootable/recovery/
install.cpp 75 int pipefd[2]; local
76 pipe(pipefd);
116 sprintf(temp, "%d", pipefd[1]);
123 close(pipefd[0]);
128 close(pipefd[1]);
133 FILE* from_child = fdopen(pipefd[0], "r");
  /external/chromium/chrome/browser/
browser_main_posix.cc 241 int pipefd[2]; local
242 int ret = pipe(pipefd);
246 g_shutdown_pipe_read_fd = pipefd[0];
247 g_shutdown_pipe_write_fd = pipefd[1];
  /system/netd/
TetherController.cpp 109 int pipefd[2]; local
111 if (pipe(pipefd) < 0) {
122 close(pipefd[0]);
123 close(pipefd[1]);
128 close(pipefd[1]);
129 if (pipefd[0] != STDIN_FILENO) {
130 if (dup2(pipefd[0], STDIN_FILENO) != STDIN_FILENO) {
134 close(pipefd[0]);
162 close(pipefd[0]);
164 mDaemonFd = pipefd[1]
    [all...]
  /cts/suite/audio_quality/test/
RemoteAudioFakeTcpTest.cpp 59 int pipefd[2]; local
60 if (pipe(pipefd) == -1) {
64 LOGD("pipe %d %d", pipefd[0], pipefd[1]);
65 mSocket = pipefd[0];
66 mPipeWrFd = pipefd[1];
  /external/dnsmasq/src/
helper.c 56 int i, pipefd[2]; local
61 if (pipe(pipefd) == -1 || !fix_fd(pipefd[1]) || (pid = fork()) == -1)
69 close(pipefd[0]); /* close reader side */
70 return pipefd[1];
106 max_fd != STDIN_FILENO && max_fd != pipefd[0] && max_fd != event_fd)
118 if (!read_write(pipefd[0], (unsigned char *)&data, sizeof(data), 1))
142 if (!read_write(pipefd[0], buf, data.clid_len, 1))
158 if (!read_write(pipefd[0], buf,
275 close(pipefd[0])
    [all...]
dnsmasq.c 78 int piperead, pipefd[2], err_pipe[2]; local
274 safe_pipe(pipefd, 1);
276 piperead = pipefd[0];
277 pipewrite = pipefd[1];
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 595 int* pipefd = new int[2]; local
596 int res = pipe(pipefd);
598 EXPECT_NOT_POISONED(pipefd[0]);
599 EXPECT_NOT_POISONED(pipefd[1]);
600 close(pipefd[0]);
601 close(pipefd[1]);
    [all...]
  /external/ppp/pppd/
main.c 798 int pipefd[2]; local
802 if (pipe(pipefd) == -1)
803 pipefd[0] = pipefd[1] = -1;
830 close(pipefd[1]);
831 complete_read(pipefd[0], numbuf, 1);
832 close(pipefd[0]);
1513 int fd, pipefd[2]; local
    [all...]

Completed in 485 milliseconds