HomeSort by relevance Sort by last modified time
    Searched defs:pipefd (Results 1 - 8 of 8) 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.c 66 int pipefd[2]; local
67 pipe(pipefd);
107 sprintf(args[2], "%d", pipefd[1]);
113 close(pipefd[0]);
118 close(pipefd[1]);
123 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]);
159 close(pipefd[0]);
161 mDaemonFd = pipefd[1]
    [all...]
  /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/bluetooth/bluez/audio/
pcm_bluetooth.c 142 int pipefd[2]; /* Inter thread communication */ member in struct:bluetooth_data
221 if (write(data->pipefd[1], &c, 1) < 0)
313 if (data->pipefd[0] > 0)
314 close(data->pipefd[0]);
316 if (data->pipefd[1] > 0)
317 close(data->pipefd[1]);
423 err = write(data->pipefd[1], &c, 1);
803 assert(data->pipefd[0] >= 0);
808 pfd[0].fd = data->pipefd[0];
    [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 154 milliseconds