Searched refs:stdio (Results 1 – 17 of 17) sorted by relevance
291 options.stdio = stdio; in TEST_IMPL()335 options.stdio = stdio; in TEST_IMPL()389 options.stdio = stdio; in TEST_IMPL()451 options.stdio = stdio; in TEST_IMPL()528 options.stdio = stdio; in TEST_IMPL()596 options.stdio = stdio; in TEST_IMPL()634 options.stdio = stdio; in TEST_IMPL()714 options.stdio = stdio; in TEST_IMPL()794 options.stdio = stdio; in TEST_IMPL()875 options.stdio = stdio; in TEST_IMPL()[all …]
104 uv_stdio_container_t stdio[2]; in spawn() local119 options.stdio = stdio; in spawn()121 options.stdio[0].flags = UV_IGNORE; in spawn()122 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE; in spawn()123 options.stdio[1].data.stream = (uv_stream_t*)&out; in spawn()
122 uv_stdio_container_t stdio[3]; in test_stdio_over_pipes() local131 options.stdio = stdio; in test_stdio_over_pipes()132 options.stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE | in test_stdio_over_pipes()134 options.stdio[0].data.stream = (uv_stream_t*) ∈ in test_stdio_over_pipes()135 options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE | in test_stdio_over_pipes()137 options.stdio[1].data.stream = (uv_stream_t*) &out; in test_stdio_over_pipes()138 options.stdio[2].flags = UV_INHERIT_FD; in test_stdio_over_pipes()139 options.stdio[2].data.fd = 2; in test_stdio_over_pipes()
288 uv_stdio_container_t stdio[3]; in spawn_helper() local307 options.stdio = stdio; in spawn_helper()308 options.stdio_count = ARRAY_SIZE(stdio); in spawn_helper()310 stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE | UV_WRITABLE_PIPE; in spawn_helper()311 stdio[0].data.stream = (uv_stream_t*) channel; in spawn_helper()312 stdio[1].flags = UV_INHERIT_FD; in spawn_helper()313 stdio[1].data.fd = 1; in spawn_helper()314 stdio[2].flags = UV_INHERIT_FD; in spawn_helper()315 stdio[2].data.fd = 2; in spawn_helper()
32 uv_stdio_container_t* stdio;100 Container for each stdio handle or fd passed to a child process.114 Flags specifying how a stdio should be transmitted to the child process.209 .. c:member:: uv_stdio_container_t* uv_process_options_t.stdio211 The `stdio` field points to an array of :c:type:`uv_stdio_container_t`213 the child process. The convention is that stdio[0] points to stdin,232 Flags specifying how the stdio container should be passed to the child.
249 type of the stdio streams.
36 options.stdio = child_stdio; in main()
35 options.stdio = child_stdio; in invoke_cgi_script()
1000 err = uv__process_init_stdio(options->stdio + i, pipes[i]); in uv_spawn()1047 err = uv__process_open_stream(options->stdio + i, pipes[i]); in uv_spawn()1052 uv__process_close_stream(options->stdio + i); in uv_spawn()1066 if (options->stdio[i].flags & (UV_INHERIT_FD | UV_INHERIT_STREAM)) in uv_spawn()
85 worker->options.stdio = child_stdio; in setup_workers()
185 The file descriptors of the child process are set using the ``stdio`` field in187 file descriptors being set. ``uv_process_options_t.stdio`` is an array of202 used. If the first three ``stdio`` fields are marked as ``UV_IGNORE`` they'll268 New stdio Pipes
203 fdopt = options->stdio[i]; in uv__stdio_create()
1028 if (options->stdio[i].flags & UV_INHERIT_FD) in uv_spawn()1109 const uv_stdio_container_t* fdopt = &options->stdio[i]; in uv_spawn()
79 src/win/process-stdio.c \260 test/test-stdio-over-pipes.c \
216 src/win/process-stdio.c633 test/test-stdio-over-pipes.c
2775 * unix,spawn: respect user stdio flags for new pipe (Jameson Nash)2845 * win: CREATE_NO_WINDOW when stdio is not inherited (Nick Logan)4040 * include: add stdio.h to uv.h (Saúl Ibarra Corretgé)5317 * process: don't close stdio fds during spawn (Tonis Tiigi)5367 * process: close stdio after dup2'ing it (Fedor Indutny)5380 * process: close stdio after dup2'ing it (Fedor Indutny)
1082 uv_stdio_container_t* stdio; member
Completed in 44 milliseconds