OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:captured_fd
(Results
1 - 2
of
2
) sorted by null
/external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc
100
const int
captured_fd
= mkstemp(name_template);
local
103
dup2(
captured_fd
, STDERR_FILENO);
104
close(
captured_fd
);
/external/gtest/src/
gtest-port.cc
426
const int
captured_fd
= creat(temp_file_path, _S_IREAD | _S_IWRITE);
local
430
const int
captured_fd
= mkstemp(name_template);
local
437
const int
captured_fd
= mkstemp(name_template);
local
441
dup2(
captured_fd
, kStdErrFileno);
442
close(
captured_fd
);
Completed in 1886 milliseconds