OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:child_fd_
(Results
1 - 2
of
2
) sorted by null
/external/libbrillo/brillo/
process.cc
80
// info.
child_fd_
is the 'child half' of the pipe, which gets dup2()ed into
82
// place, we can set info.
child_fd_
to parent_fd and leave info.parent_fd_
84
info.
child_fd_
= parent_fd;
165
i->second.
child_fd_
= pipefds[0];
168
i->second.
child_fd_
= pipefds[1];
177
fd == pipe.second.
child_fd_
||
243
HANDLE_EINTR(dup2(i->second.
child_fd_
, i->first));
248
IGNORE_EINTR(close(i->second.
child_fd_
));
301
IGNORE_EINTR(close(i->second.
child_fd_
));
process.h
190
PipeInfo() : parent_fd_(-1),
child_fd_
(-1), is_input_(false) {}
194
int
child_fd_
;
member in struct:brillo::ProcessImpl::PipeInfo
Completed in 47 milliseconds