/bionic/libc/bionic/ |
pipe.cpp | 32 return pipe2(pipefd, 0);
|
/external/bison/lib/ |
unistd--.h | 30 # undef pipe2 macro 31 # define pipe2 pipe2_safer macro
|
pipe2-safer.c | 1 /* Invoke pipe2, but avoid some glitches. 27 /* Like pipe2, but ensure that neither of the file descriptors is 34 if (pipe2 (fd, flags) == 0)
|
pipe2.c | 40 pipe2 (int fd[2], int flags) function 50 # undef pipe2 macro 58 int result = pipe2 (fd, flags);
|
unistd.in.h | [all...] |
/bionic/libc/arch-arm/syscalls/ |
pipe2.S | 5 ENTRY(pipe2) function 14 END(pipe2)
|
/bionic/libc/arch-arm64/syscalls/ |
pipe2.S | 5 ENTRY(pipe2) function 14 END(pipe2)
|
/bionic/libc/arch-mips/syscalls/ |
pipe2.S | 5 ENTRY(pipe2) function 19 END(pipe2)
|
/bionic/libc/arch-x86_64/syscalls/ |
pipe2.S | 5 ENTRY(pipe2) function 15 END(pipe2)
|
/bionic/libc/arch-mips64/syscalls/ |
pipe2.S | 5 ENTRY(pipe2) function 25 END(pipe2)
|
/bionic/libc/arch-x86/syscalls/ |
pipe2.S | 5 ENTRY(pipe2) function 26 END(pipe2)
|
/development/ndk/sources/android/libportable/arch-mips/ |
pipe.c | 17 #define _GNU_SOURCE /* GLibc compatibility to declare pipe2(2) */ 63 int WRAP(pipe2)(int pipefd[2], int portable_flags) { function 73 rv = REAL(pipe2)(pipefd, native_flags); 75 ALOGV("%s: pipe2() returned pipefd[0]:%d, pipefd[1]:%d", __func__,
|
/development/ndk/sources/android/libportable/common/include/ |
filefd_portable.h | 42 extern int WRAP(pipe2)(int pipefd[2], int portable_flags);
|
/bionic/tests/ |
fcntl_test.cpp | 208 int pipe2[2]; local 209 ASSERT_EQ(0, pipe(pipe2)); 219 // Tee /proc/version from pipe1 into pipe2. 220 ssize_t bytes_teed = tee(pipe1[0], pipe2[1], SIZE_MAX, 0); 222 close(pipe2[1]); 224 // The out fds of both pipe1 and pipe2 should now contain /proc/version. 232 FILE* fp2 = fdopen(pipe2[0], "r");
|
/external/chromium_org/mojo/public/cpp/bindings/tests/ |
request_response_unittest.cc | 127 MessagePipe pipe2; local 128 provider->EchoMessagePipeHandle(pipe2.handle1.Pass(), 134 ReadTextMessage(pipe2.handle0.get(), &value);
|
/external/chromium_org/ipc/ |
ipc_send_fds_test.cc | 298 // sends it over pipe2 to the consumer thread. The consumer thread writes a byte 357 PipeChannelHelper pipe2( 363 pipe2.Init(); 364 Producer(&pipe2, producer.get(), pipes_to_send);
|
/external/bison/ |
Android.mk | 71 lib/pipe2-safer.c \ 72 lib/pipe2.c \
|
/external/bison/darwin-lib/ |
unistd.h | 1450 _GL_CXXALIASWARN (pipe2); variable 1452 # undef pipe2 macro [all...] |
/external/bison/linux-lib/ |
unistd.h | 1442 # define pipe2 macro 1450 _GL_CXXALIASWARN (pipe2); variable 1452 # undef pipe2 macro [all...] |
/bionic/libc/include/ |
unistd.h | 116 extern int pipe2(int *, int);
|
/bionic/libc/upstream-netbsd/lib/libc/gen/ |
popen.c | 103 if (pipe2(pdes, flags) == -1)
|
/development/ndk/platforms/android-12/include/ |
unistd.h | 117 extern int pipe2(int *, int);
|
/development/ndk/platforms/android-9/include/ |
unistd.h | 117 extern int pipe2(int *, int);
|
/development/ndk/platforms/android-L/include/ |
unistd.h | 119 extern int pipe2(int *, int);
|
/prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/ |
unistd.h | 116 extern int pipe2(int *, int);
|