OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BindFd
(Results
1 - 4
of
4
) sorted by null
/external/libbrillo/brillo/
process.h
61
virtual void
BindFd
(int parent_fd, int child_fd) = 0;
168
virtual void
BindFd
(int parent_fd, int child_fd);
process_mock.h
24
MOCK_METHOD2(
BindFd
, void(int parent_fd, int child_fd));
process_unittest.cc
67
TEST(SimpleProcess,
BindFd
) {
75
process.
BindFd
(fds[1], 1);
process.cc
76
void ProcessImpl::
BindFd
(int parent_fd, int child_fd) {
246
// same child fd be bound to multiple fds using
BindFd
Completed in 411 milliseconds