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

  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_posix.c 28 int usbi_pipe(int pipefd[2])
30 int ret = pipe(pipefd);
34 ret = fcntl(pipefd[1], F_GETFL);
39 ret = fcntl(pipefd[1], F_SETFL, ret | O_NONBLOCK);
48 usbi_close(pipefd[0]);
49 usbi_close(pipefd[1]);
poll_posix.h 25 int usbi_pipe(int pipefd[2]);
poll_windows.h 87 int usbi_pipe(int pipefd[2]);
  /development/ndk/sources/android/libportable/arch-mips/
pipe.c 63 int WRAP(pipe2)(int pipefd[2], int portable_flags) {
68 ALOGV("%s(pipefd[2]:%p, portable_flags:0x%x) {", __func__,
69 pipefd, portable_flags);
73 rv = REAL(pipe2)(pipefd, native_flags);
75 ALOGV("%s: pipe2() returned pipefd[0]:%d, pipefd[1]:%d", __func__,
76 pipefd[0], pipefd[1]);
79 filefd_CLOEXEC_enabled(pipefd[0]);
80 filefd_CLOEXEC_enabled(pipefd[1])
    [all...]
  /development/ndk/sources/android/libportable/common/include/
filefd_portable.h 42 extern int WRAP(pipe2)(int pipefd[2], int portable_flags);
  /external/qemu/
oslib-posix.c 94 int qemu_pipe(int pipefd[2])
99 ret = pipe2(pipefd, O_CLOEXEC);
104 ret = pipe(pipefd);
106 qemu_set_cloexec(pipefd[0]);
107 qemu_set_cloexec(pipefd[1]);
qemu-common.h 226 int qemu_eventfd(int pipefd[2]);
227 int qemu_pipe(int pipefd[2]);
  /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]));
  /external/chromium_org/net/test/spawned_test_server/
local_test_server_posix.cc 116 int pipefd[2]; local
117 if (pipe(pipefd) != 0) {
123 child_fd_ = pipefd[0];
125 file_util::ScopedFD write_closer(&pipefd[1]);
127 map_write_fd.push_back(std::make_pair(pipefd[1], pipefd[1]));
129 python_command.AppendArg("--startup-pipe=" + base::IntToString(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...]
  /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/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/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];
  /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/chromium_org/chrome/browser/
chrome_browser_main_posix.cc 308 int pipefd[2]; local
309 int ret = pipe(pipefd);
314 g_shutdown_pipe_read_fd = pipefd[0];
315 g_shutdown_pipe_write_fd = pipefd[1];
  /external/chromium_org/content/renderer/media/android/
audio_decoder_android.cc 68 int pipefd[2]; local
70 if (pipe(pipefd))
73 read_fd_ = pipefd[0];
74 write_fd_ = pipefd[1];
  /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...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc     [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 606 INTERCEPTOR(int, pipe, int pipefd[2]) {
608 return REAL(pipe)(pipefd);
610 int res = REAL(pipe)(pipefd);
612 __msan_unpoison(pipefd, sizeof(int[2]));
616 INTERCEPTOR(int, pipe2, int pipefd[2], int flags) {
618 int res = REAL(pipe2)(pipefd, flags);
620 __msan_unpoison(pipefd, sizeof(int[2]));
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 665 int* pipefd = new int[2]; local
666 int res = pipe(pipefd);
668 EXPECT_NOT_POISONED(pipefd[0]);
669 EXPECT_NOT_POISONED(pipefd[1]);
670 close(pipefd[0]);
671 close(pipefd[1]);
675 int* pipefd = new int[2]; local
676 int res = pipe2(pipefd, O_NONBLOCK);
678 EXPECT_NOT_POISONED(pipefd[0]);
679 EXPECT_NOT_POISONED(pipefd[1])
    [all...]

Completed in 604 milliseconds