Searched refs:pipefds (Results 1 - 5 of 5) sorted by relevance
/third_party/libuv/test/ |
H A D | test-signal-pending-on-close.c | 61 int pipefds[2]; in TEST_IMPL() local 71 ASSERT_OK(pipe(pipefds)); in TEST_IMPL() 75 ASSERT_OK(uv_pipe_open(&pipe_hdl, pipefds[1])); in TEST_IMPL() 87 close(pipefds[0]); in TEST_IMPL()
|
/third_party/node/deps/openssl/openssl/engines/ |
H A D | e_dasync.c | 524 OSSL_ASYNC_FD pipefds[2] = {0, 0}; in dummy_pause_job() local 550 if (ASYNC_WAIT_CTX_get_fd(waitctx, engine_dasync_id, &pipefds[0], in dummy_pause_job() 552 pipefds[1] = *writefd; in dummy_pause_job() 558 if (CreatePipe(&pipefds[0], &pipefds[1], NULL, 256) == 0) { in dummy_pause_job() 563 if (pipe(pipefds) != 0) { in dummy_pause_job() 568 *writefd = pipefds[1]; in dummy_pause_job() 570 if (!ASYNC_WAIT_CTX_set_wait_fd(waitctx, engine_dasync_id, pipefds[0], in dummy_pause_job() 572 wait_cleanup(waitctx, engine_dasync_id, pipefds[0], writefd); in dummy_pause_job() 582 WriteFile(pipefds[ in dummy_pause_job() [all...] |
/third_party/openssl/engines/ |
H A D | e_dasync.c | 524 OSSL_ASYNC_FD pipefds[2] = {0, 0}; in dummy_pause_job() local 550 if (ASYNC_WAIT_CTX_get_fd(waitctx, engine_dasync_id, &pipefds[0], in dummy_pause_job() 552 pipefds[1] = *writefd; in dummy_pause_job() 558 if (CreatePipe(&pipefds[0], &pipefds[1], NULL, 256) == 0) { in dummy_pause_job() 563 if (pipe(pipefds) != 0) { in dummy_pause_job() 568 *writefd = pipefds[1]; in dummy_pause_job() 570 if (!ASYNC_WAIT_CTX_set_wait_fd(waitctx, engine_dasync_id, pipefds[0], in dummy_pause_job() 572 wait_cleanup(waitctx, engine_dasync_id, pipefds[0], writefd); in dummy_pause_job() 582 WriteFile(pipefds[ in dummy_pause_job() [all...] |
/third_party/node/deps/uv/src/unix/ |
H A D | process.c | 203 int pipefds[2]) { in uv__process_open_stream() 207 if (!(container->flags & UV_CREATE_PIPE) || pipefds[0] < 0) in uv__process_open_stream() 210 err = uv__close(pipefds[1]); in uv__process_open_stream() 214 pipefds[1] = -1; in uv__process_open_stream() 215 uv__nonblock(pipefds[0], 1); in uv__process_open_stream() 223 return uv__stream_open(container->data.stream, pipefds[0], flags); in uv__process_open_stream() 202 uv__process_open_stream(uv_stdio_container_t* container, int pipefds[2]) uv__process_open_stream() argument
|
/third_party/libuv/src/unix/ |
H A D | process.c | 229 int pipefds[2]) { in uv__process_open_stream() 233 if (!(container->flags & UV_CREATE_PIPE) || pipefds[0] < 0) in uv__process_open_stream() 236 err = uv__close(pipefds[1]); in uv__process_open_stream() 240 pipefds[1] = -1; in uv__process_open_stream() 241 uv__nonblock(pipefds[0], 1); in uv__process_open_stream() 249 return uv__stream_open(container->data.stream, pipefds[0], flags); in uv__process_open_stream() 228 uv__process_open_stream(uv_stdio_container_t* container, int pipefds[2]) uv__process_open_stream() argument
|
Completed in 8 milliseconds