Home
last modified time | relevance | path

Searched refs:pipe2 (Results 1 – 25 of 91) sorted by relevance

1234

/third_party/ltp/testcases/kernel/syscalls/tee/
Dtee01.c52 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/
Dtest-pipewrap.js34 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 },
Dtest-pipeconnectwrap.js15 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/
DgenericFunctionInference1.js36 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 …]
DgenericFunctionInference1.errors.txt40 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);
DgenericFunctionInference1.symbols316 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 …]
DgenericFunctionInference1.types302 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/
DgenericFunctionInference1.ts38 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/
Ddebugger.cpp1102 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/
Dpipe2.c6 int pipe2(int fd[2], int flag) in pipe2() function
Dfaccessat.c40 if (pipe2(p, O_CLOEXEC)) return __syscall_ret(-EBUSY); in faccessat()
/third_party/musl/porting/liteos_a/user/src/unistd/
Dpipe2.c7 int pipe2(int fd[2], int flag) in pipe2() function
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dpipe2.c28 int ret = pipe2(pipefd, flag); in pipe2_test()
Dtest_src_functionalext_supplement_unistd.gni72 "pipe2",
/third_party/musl/src/misc/
Dforkpty.c21 if (pipe2(p, O_CLOEXEC)) { in forkpty()
Dwordexp.c99 if (pipe2(p, O_CLOEXEC) < 0) goto nospace; in do_wordexp()
/third_party/musl/src/stdio/
Dpopen.c27 if (pipe2(p, O_CLOEXEC)) return NULL; in popen()
/third_party/musl/porting/liteos_a/user/src/stdio/
Dpopen.c29 if (pipe2(p, O_CLOEXEC)) return NULL; in popen()
/third_party/nghttp2/src/
Dshrpx_exec.cc45 if (pipe2(pfd, O_CLOEXEC) == -1) { in exec_read_command()
/third_party/libwebsockets/lib/plat/unix/
Dunix-pipe.c44 n = pipe2(pt->dummy_pipe_fds, O_NONBLOCK); in lws_plat_pipe_create()
/third_party/musl/porting/liteos_a/user/src/misc/
Dwordexp.c100 if (pipe2(p, O_CLOEXEC) < 0) goto nospace; in do_wordexp()
/third_party/ltp/include/lapi/syscalls/
Daarch64.in60 pipe2 59
Darc.in60 pipe2 59
Dmips_n64.in287 pipe2 5287
Dia64.in288 pipe2 1317

1234