HomeSort by relevance Sort by last modified time
    Searched full:pipe2 (Results 1 - 25 of 453) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm64/syscalls/
pipe2.S 5 ENTRY(pipe2) function
14 END(pipe2)
  /bionic/libc/arch-arm/syscalls/
pipe2.S 5 ENTRY(pipe2) function
16 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)
  /external/strace/tests/
pipe2.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (pipe2 -a15 ); do not edit.
pipe2.c 2 * Check decoding of pipe2 syscall.
48 perror_msg_and_skip("pipe2");
49 printf("pipe2([%d, %d], O_NONBLOCK) = 0\n", fds[0], fds[1]);
52 printf("pipe2(%p, 0) = %s\n", efault, sprintrc(rc));
57 printf("pipe2(%#llx, 0) = %s\n",
  /external/strace/tests-m32/
pipe2.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (pipe2 -a15 ); do not edit.
pipe2.c 2 * Check decoding of pipe2 syscall.
48 perror_msg_and_skip("pipe2");
49 printf("pipe2([%d, %d], O_NONBLOCK) = 0\n", fds[0], fds[1]);
52 printf("pipe2(%p, 0) = %s\n", efault, sprintrc(rc));
57 printf("pipe2(%#llx, 0) = %s\n",
  /external/strace/tests-mx32/
pipe2.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (pipe2 -a15 ); do not edit.
pipe2.c 2 * Check decoding of pipe2 syscall.
48 perror_msg_and_skip("pipe2");
49 printf("pipe2([%d, %d], O_NONBLOCK) = 0\n", fds[0], fds[1]);
52 printf("pipe2(%p, 0) = %s\n", efault, sprintrc(rc));
57 printf("pipe2(%#llx, 0) = %s\n",
  /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
34 END(pipe2)
  /prebuilts/go/darwin-x86/src/syscall/
exec_freebsd.go 8 return Pipe2(p, O_CLOEXEC)
  /prebuilts/go/linux-x86/src/syscall/
exec_freebsd.go 8 return Pipe2(p, O_CLOEXEC)
  /prebuilts/go/darwin-x86/src/os/
pipe_linux.go 14 e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
15 // pipe2 was added in 2.6.27 and our minimum requirement is 2.6.23, so it
29 return nil, nil, NewSyscallError("pipe2", e)
pipe_freebsd.go 14 e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
  /prebuilts/go/linux-x86/src/os/
pipe_linux.go 14 e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
15 // pipe2 was added in 2.6.27 and our minimum requirement is 2.6.23, so it
29 return nil, nil, NewSyscallError("pipe2", e)
pipe_freebsd.go 14 e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
  /external/ltp/testcases/kernel/syscalls/tee/
tee01.c 72 int pipe2[2]; local
79 SAFE_PIPE(pipe2);
85 ret = tee(pipe1[0], pipe2[1], TEST_BLOCK_SIZE, SPLICE_F_NONBLOCK);
89 ret = splice(pipe2[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0);
91 tst_brk(TBROK | TERRNO, "splice(pipe2, fd_out) failed");
93 SAFE_CLOSE(pipe2[0]);
94 SAFE_CLOSE(pipe2[1]);
  /external/perfetto/src/base/
task_runner_unittest.cc 181 Pipe pipe2; local
184 pipe.read_fd.get(), [&task_runner, &pipe, &pipe2] {
187 pipe2.read_fd.get(), [&task_runner] { task_runner.Quit(); });
195 Pipe pipe2; local
199 pipe.read_fd.get(), [&task_runner, &pipe, &pipe2] {
201 task_runner.RemoveFileDescriptorWatch(pipe2.read_fd.get());
203 task_runner.AddFileDescriptorWatch(pipe2.read_fd.get(),
214 Pipe pipe2; local
218 pipe.read_fd.get(), [&task_runner, &pipe2] {
219 task_runner.RemoveFileDescriptorWatch(pipe2.read_fd.get())
    [all...]
  /system/core/debuggerd/seccomp_policy/
crash_dump.arm.policy 14 pipe2: 1
crash_dump.arm64.policy 13 pipe2: 1
crash_dump.x86.policy 14 pipe2: 1
crash_dump.x86_64.policy 13 pipe2: 1
  /external/ltp/testcases/kernel/syscalls/pipe2/
pipe2_01.c 29 /* This patch introduces the new syscall pipe2 which is like pipe but it also */
146 tst_brkm(TFAIL, cleanup, "pipe2(0) failed");
156 cleanup, "pipe2(0) set close-on-exit for fd[%d]",
165 "pipe2(O_CLOEXEC) failed");
175 cleanup, "pipe2(O_CLOEXEC) does not set close-on-exit for fd[%d]",
181 tst_resm(TPASS, "pipe2(O_CLOEXEC) PASSED");

Completed in 3268 milliseconds

1 2 3 4 5 6 7 8 91011>>