Home
last modified time | relevance | path

Searched refs:dev_null (Results 1 – 8 of 8) sorted by relevance

/external/minijail/
Dlibminijail_unittest.cc231 int dev_null = open("/dev/null", O_RDONLY); in TEST() local
232 ASSERT_NE(dev_null, -1); in TEST()
236 dev_null); in TEST()
273 close(dev_null); in TEST()
/external/libunwind/tests/
DGtest-dyn1.c162 dev_null (const char *format UNUSED, ...) in dev_null() function
219 (*funcp) (10, funcp, dev_null, "iteration %c%s\n", strarr); in main()
/external/libchrome/base/process/
Dlaunch_posix.cc576 int dev_null = open("/dev/null", O_WRONLY); in GetAppOutputInternal() local
577 if (dev_null < 0) in GetAppOutputInternal()
582 include_stderr ? pipe_fd[1] : dev_null, in GetAppOutputInternal()
584 fd_shuffle1.push_back(InjectionArc(dev_null, STDIN_FILENO, true)); in GetAppOutputInternal()
/external/chromium-trace/catapult/systrace/profile_chrome/
Dperf_tracing_agent.py194 with open(os.devnull, 'w') as dev_null, \
198 if subprocess.call(cmd, stdout=json_file, stderr=dev_null):
/external/jemalloc/bin/
Djeprof.in130 my $dev_null = "/dev/null";
131 if (! -e $dev_null && $^O =~ /MSWin/) { # $^O is the OS perl was built for
132 $dev_null = "nul";
750 if (!system(ShellEscape(@GV, "--version") . " >$dev_null 2>&1")) {
4901 if (system(ShellEscape($addr2line, "--help") . " >$dev_null 2>&1") != 0) {
4918 if (system("$cmd -i --help >$dev_null 2>&1") == 0) {
5108 $file_type = `/usr/bin/file -L $escaped_prog_file 2>$dev_null ||
5355 my $to_devnull = ">$dev_null 2>&1";
5373 $image) . " 2>$dev_null $cppfilt_flag",
5375 $image) . " 2>$dev_null $cppfilt_flag",
[all …]
/external/autotest/server/
Dautoserv.py314 dev_null = os.open(os.devnull, os.O_RDONLY)
315 os.dup2(dev_null, sys.stdin.fileno())
316 os.close(dev_null)
Dautoserv314 dev_null = os.open(os.devnull, os.O_RDONLY)
315 os.dup2(dev_null, sys.stdin.fileno())
316 os.close(dev_null)
/external/compiler-rt/lib/asan/scripts/
Dasan_symbolize.py188 dev_null = os.open('/dev/null', 0)
189 os.dup2(dev_null, 2)