Home
last modified time | relevance | path

Searched refs:null_fd (Results 1 – 2 of 2) sorted by relevance

/external/autotest/client/site_tests/kernel_SchedBandwith/
Dkernel_SchedBandwith.py104 null_fd = open("/dev/null", "w")
106 task = subprocess.Popen(cmd, stdout=null_fd)
/external/libchrome/base/process/
Dlaunch_posix.cc375 base::ScopedFD null_fd(HANDLE_EINTR(open("/dev/null", O_RDONLY))); in LaunchProcess() local
376 if (!null_fd.is_valid()) { in LaunchProcess()
381 int new_fd = HANDLE_EINTR(dup2(null_fd.get(), STDIN_FILENO)); in LaunchProcess()