Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:child_stdio
(Results
1 - 4
of
4
) sorted by relevance
/third_party/libuv/docs/code/proc-streams/
H
A
D
main.c
31
uv_stdio_container_t
child_stdio
[3];
in main()
local
32
child_stdio
[0].flags = UV_IGNORE;
in main()
33
child_stdio
[1].flags = UV_IGNORE;
in main()
34
child_stdio
[2].flags = UV_INHERIT_FD;
in main()
35
child_stdio
[2].data.fd = 2;
in main()
36
options.stdio =
child_stdio
;
in main()
/third_party/libuv/docs/code/cgi/
H
A
D
main.c
30
uv_stdio_container_t
child_stdio
[3];
in invoke_cgi_script()
local
31
child_stdio
[0].flags = UV_IGNORE;
in invoke_cgi_script()
32
child_stdio
[1].flags = UV_INHERIT_STREAM;
in invoke_cgi_script()
33
child_stdio
[1].data.stream = (uv_stream_t*) client;
in invoke_cgi_script()
34
child_stdio
[2].flags = UV_IGNORE;
in invoke_cgi_script()
35
options.stdio =
child_stdio
;
in invoke_cgi_script()
/third_party/libuv/docs/code/multi-echo-server/
H
A
D
main.c
78
uv_stdio_container_t
child_stdio
[3];
in setup_workers()
local
79
child_stdio
[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE;
in setup_workers()
80
child_stdio
[0].data.stream = (uv_stream_t*) &worker->pipe;
in setup_workers()
81
child_stdio
[1].flags = UV_IGNORE;
in setup_workers()
82
child_stdio
[2].flags = UV_INHERIT_FD;
in setup_workers()
83
child_stdio
[2].data.fd = 2;
in setup_workers()
85
worker->options.stdio =
child_stdio
;
in setup_workers()
/third_party/libuv/test/
H
A
D
test-spawn.c
1884
uv_stdio_container_t
child_stdio
[2];
in TEST_IMPL()
local
1924
child_stdio
[0].flags = UV_INHERIT_STREAM;
in TEST_IMPL()
1925
child_stdio
[0].data.stream = (uv_stream_t *) &pipe_stdin_child;
in TEST_IMPL()
1927
child_stdio
[1].flags = UV_INHERIT_STREAM;
in TEST_IMPL()
1928
child_stdio
[1].data.stream = (uv_stream_t *) &pipe_stdout_child;
in TEST_IMPL()
1930
options.stdio =
child_stdio
;
in TEST_IMPL()
Completed in 4 milliseconds