Lines Matching refs:options
32 static uv_process_options_t options; variable
70 options.file = exepath; in init_process_options()
71 options.args = args; in init_process_options()
72 options.exit_cb = exit_cb; in init_process_options()
131 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()
140 options.stdio_count = 3; in test_stdio_over_pipes()
142 r = uv_spawn(loop, &process, &options); in test_stdio_over_pipes()