Home
last modified time | relevance | path

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

/bionic/libc/tools/
Dndk_missing_symbols.py25 with open(os.devnull, 'w') as devnull:
27 stdout=devnull, stderr=devnull)
/bionic/tests/
Dclang_fortify_tests.cpp111 int devnull = open("/dev/null", O_RDONLY); in SetUp() local
112 if (devnull < 0) err(1, "failed to open /dev/null"); in SetUp()
114 if (!dup2(devnull, STDIN_FILENO)) err(1, "failed to overwrite stdin"); in SetUp()
115 static_cast<void>(close(devnull)); in SetUp()