/third_party/node/test/async-hooks/ |
H A D | test-pipewrap.js | 34 const pipe2 = pipes[1]; 42 [ pipe1, pipe2, pipe3 ].forEach((x) => { 74 [ pipe1, pipe2, pipe3 ].forEach((x) => { 79 const ioEvents = Math.min(pipe2.before.length, pipe2.after.length); 86 checkInvocations(pipe2, { init: 1, before: ioEvents, after: ioEvents },
|
H A D | test-pipeconnectwrap.js | 15 let pipe1, pipe2; 66 pipe2 = pipes[1]; 67 assert.strictEqual(typeof pipe2.uid, 'number'); 68 assert.strictEqual(typeof pipe2.triggerAsyncId, 'number'); 75 checkInvocations(pipe2, { init: 1 }, 'pipe2, client connected'); 93 checkInvocations(pipe2, { init: 1, before: 2, after: 2, destroy: 1 }, 94 'pipe2, process exiting');
|
/third_party/ltp/testcases/kernel/syscalls/tee/ |
H A D | tee01.c | 52 int pipe2[2]; in tee_test() local 59 SAFE_PIPE(pipe2); in tee_test() 65 ret = tee(pipe1[0], pipe2[1], TEST_BLOCK_SIZE, SPLICE_F_NONBLOCK); in tee_test() 69 ret = splice(pipe2[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0); in tee_test() 71 tst_brk(TBROK | TERRNO, "splice(pipe2, fd_out) failed"); in tee_test() 73 SAFE_CLOSE(pipe2[0]); in tee_test() 74 SAFE_CLOSE(pipe2[1]); in tee_test()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | genericFunctionInference1.js | 36 declare function pipe2<A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D): (a: [A, C]) => [B, D]; 38 const f20 = pipe2(list, box); 39 const f21 = pipe2(box, list); 40 const f22 = pipe2(list, list); 41 const f23 = pipe2(box, box); 42 const f24 = pipe2(f20, f20); 43 const f25 = pipe2(foo, foo); 44 const f26 = pipe2(f25, f25); 278 const f20 = pipe2(list, box);
279 const f21 = pipe2(bo [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/unistd/unistd_gtest/ |
H A D | unistd_pipe2_test.cpp | 24 EXPECT_EQ(0, pipe2(fds.data(), O_CLOEXEC)); in HWTEST_F()
|
/third_party/musl/porting/liteos_a/user/src/unistd/ |
H A D | pipe2.c | 7 int pipe2(int fd[2], int flag) in pipe2() function
|
/third_party/musl/src/unistd/ |
H A D | pipe2.c | 7 int pipe2(int fd[2], int flag) in pipe2() function
|
H A D | faccessat.c | 45 if (pipe2(p, O_CLOEXEC)) return __syscall_ret(-EBUSY); in faccessat()
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | pipe2.c | 28 int ret = pipe2(pipefd, flag); in pipe2_test()
|
/third_party/libwebsockets/lib/plat/unix/ |
H A D | unix-pipe.c | 44 n = pipe2(pt->dummy_pipe_fds, O_NONBLOCK); in lws_plat_pipe_create()
|
/third_party/musl/src/stdio/ |
H A D | popen.c | 29 if (pipe2(p, O_CLOEXEC)) return NULL; in popen()
|
/third_party/nghttp2/src/ |
H A D | shrpx_exec.cc | 45 if (pipe2(pfd, O_CLOEXEC) == -1) { in exec_read_command()
|
/third_party/musl/porting/liteos_a/user/src/stdio/ |
H A D | popen.c | 29 if (pipe2(p, O_CLOEXEC)) return NULL; in popen()
|
/third_party/musl/src/misc/ |
H A D | forkpty.c | 21 if (pipe2(p, O_CLOEXEC)) { in forkpty()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_event_wake_pipe.c | 70 if (pipe2(p->filedes, O_NONBLOCK | O_CLOEXEC) != 0) { in ares_pipeevent_init()
|
/third_party/ltp/testcases/kernel/watchqueue/ |
H A D | common.h | 100 TEST(pipe2(pipefd, O_NOTIFICATION_PIPE)); in wqueue_watch() 110 tst_brk(TBROK | TTERRNO, "pipe2() returned %ld", TST_RET); in wqueue_watch()
|
/third_party/libunwind/libunwind/src/s390x/ |
H A D | Ginit.c | 108 pipe2 (mem_validate_pipe, O_CLOEXEC | O_NONBLOCK); in open_pipe()
|
/third_party/musl/src/process/ |
H A D | posix_spawn.c | 194 if (pipe2(args.p, O_CLOEXEC)) { in posix_spawn()
|
/third_party/musl/porting/liteos_a/user/src/process/ |
H A D | posix_spawn.c | 190 if (pipe2(args.p, O_CLOEXEC)) { in posix_spawn()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/ |
H A D | unistd.h | 46 int pipe2(int [2], int);
|
/third_party/libunwind/libunwind/src/aarch64/ |
H A D | Ginit.c | 98 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/libunwind/libunwind/src/arm/ |
H A D | Ginit.c | 88 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/libunwind/libunwind/src/riscv/ |
H A D | Ginit.c | 109 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/libunwind/libunwind/src/x86_64/ |
H A D | Ginit.c | 85 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 36 int pipe2(int [2], int);
|