/third_party/ltp/testcases/kernel/syscalls/tee/ |
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() 73 SAFE_CLOSE(pipe2[0]); in tee_test() 74 SAFE_CLOSE(pipe2[1]); in tee_test()
|
/third_party/node/test/async-hooks/ |
D | test-pipewrap.js | 34 const pipe2 = pipes[1]; constant 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 },
|
D | test-pipeconnectwrap.js | 15 let pipe1, pipe2; variable 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 },
|
/third_party/typescript/tests/baselines/reference/ |
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(box, list); [all …]
|
D | genericFunctionInference1.errors.txt | 40 declare function pipe2<A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D): (a: [A, C]) => [B, D]; 42 const f20 = pipe2(list, box); 43 const f21 = pipe2(box, list); 44 const f22 = pipe2(list, list); 45 const f23 = pipe2(box, box); 46 const f24 = pipe2(f20, f20); 47 const f25 = pipe2(foo, foo); 48 const f26 = pipe2(f25, f25);
|
D | genericFunctionInference1.symbols | 316 declare function pipe2<A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D): (a: [A, C]) => [B, D]; 317 >pipe2 : Symbol(pipe2, Decl(genericFunctionInference1.ts, 32, 64)) 336 const f20 = pipe2(list, box); 338 >pipe2 : Symbol(pipe2, Decl(genericFunctionInference1.ts, 32, 64)) 342 const f21 = pipe2(box, list); 344 >pipe2 : Symbol(pipe2, Decl(genericFunctionInference1.ts, 32, 64)) 348 const f22 = pipe2(list, list); 350 >pipe2 : Symbol(pipe2, Decl(genericFunctionInference1.ts, 32, 64)) 354 const f23 = pipe2(box, box); 356 >pipe2 : Symbol(pipe2, Decl(genericFunctionInference1.ts, 32, 64)) [all …]
|
D | genericFunctionInference1.types | 302 declare function pipe2<A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D): (a: [A, C]) => [B, D]; 303 >pipe2 : <A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D) => (a: [A, C]) => [B, D] 310 const f20 = pipe2(list, box); 312 >pipe2(list, box) : <T, V>(a: [T, V]) => [T[], { value: V; }] 313 >pipe2 : <A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D) => (a: [A, C]) => [B, D] 317 const f21 = pipe2(box, list); 319 >pipe2(box, list) : <V, T>(a: [V, T]) => [{ value: V; }, T[]] 320 >pipe2 : <A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D) => (a: [A, C]) => [B, D] 324 const f22 = pipe2(list, list); 326 >pipe2(list, list) : <T, T1>(a: [T, T1]) => [T[], T1[]] [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | genericFunctionInference1.ts | 38 declare function pipe2<A, B, C, D>(ab: (a: A) => B, cd: (c: C) => D): (a: [A, C]) => [B, D]; function 40 const f20 = pipe2(list, box); 41 const f21 = pipe2(box, list); 42 const f22 = pipe2(list, list); 43 const f23 = pipe2(box, box); 44 const f24 = pipe2(f20, f20); 45 const f25 = pipe2(foo, foo); 46 const f26 = pipe2(f25, f25);
|
/third_party/boost/tools/build/src/engine/ |
D | debugger.cpp | 1102 HANDLE pipe2[ 2 ]; in debug_start_child() local 1115 if ( ! CreatePipe( &pipe2[ 0 ], &pipe2[ 1 ], &sa, 0 ) ) in debug_start_child() 1128 CloseHandle( pipe2[ 0 ] ); in debug_start_child() 1129 CloseHandle( pipe2[ 1 ] ); in debug_start_child() 1139 sprintf( buf, "%p", pipe2[ 1 ] ); in debug_start_child() 1151 SetHandleInformation( pipe2[ 0 ], HANDLE_FLAG_INHERIT, 0 ); in debug_start_child() 1168 CloseHandle( pipe2[ 0 ] ); in debug_start_child() 1169 CloseHandle( pipe2[ 1 ] ); in debug_start_child() 1178 CloseHandle( pipe2[ 1 ] ); in debug_start_child() 1184 init_parent_handles( pipe1[ 1 ], pipe2[ 0 ] ); in debug_start_child() [all …]
|
/third_party/musl/src/unistd/ |
D | pipe2.c | 6 int pipe2(int fd[2], int flag) in pipe2() function
|
D | faccessat.c | 40 if (pipe2(p, O_CLOEXEC)) return __syscall_ret(-EBUSY); in faccessat()
|
/third_party/musl/porting/liteos_a/user/src/unistd/ |
D | pipe2.c | 7 int pipe2(int fd[2], int flag) in pipe2() function
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
D | pipe2.c | 28 int ret = pipe2(pipefd, flag); in pipe2_test()
|
D | test_src_functionalext_supplement_unistd.gni | 72 "pipe2",
|
/third_party/musl/src/misc/ |
D | forkpty.c | 21 if (pipe2(p, O_CLOEXEC)) { in forkpty()
|
D | wordexp.c | 99 if (pipe2(p, O_CLOEXEC) < 0) goto nospace; in do_wordexp()
|
/third_party/musl/src/stdio/ |
D | popen.c | 27 if (pipe2(p, O_CLOEXEC)) return NULL; in popen()
|
/third_party/musl/porting/liteos_a/user/src/stdio/ |
D | popen.c | 29 if (pipe2(p, O_CLOEXEC)) return NULL; in popen()
|
/third_party/nghttp2/src/ |
D | shrpx_exec.cc | 45 if (pipe2(pfd, O_CLOEXEC) == -1) { in exec_read_command()
|
/third_party/libwebsockets/lib/plat/unix/ |
D | unix-pipe.c | 44 n = pipe2(pt->dummy_pipe_fds, O_NONBLOCK); in lws_plat_pipe_create()
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
D | wordexp.c | 100 if (pipe2(p, O_CLOEXEC) < 0) goto nospace; in do_wordexp()
|
/third_party/ltp/include/lapi/syscalls/ |
D | aarch64.in | 60 pipe2 59
|
D | arc.in | 60 pipe2 59
|
D | mips_n64.in | 287 pipe2 5287
|
D | ia64.in | 288 pipe2 1317
|