HomeSort by relevance Sort by last modified time
    Searched defs:open_fds (Results 1 - 6 of 6) sorted by null

  /external/libchrome/base/process/
process_metrics_unittest.cc 572 int open_fds = -1; local
574 open_fds = metrics->GetOpenFdCount();
575 if (!open_fds) {
580 EXPECT_EQ(0, open_fds);
  /frameworks/base/core/jni/
fd_utils.cpp 473 std::set<int> open_fds; local
496 open_fds.insert(fd);
504 return RestatInternal(open_fds, error_msg);
527 bool FileDescriptorTable::RestatInternal(std::set<int>& open_fds, std::string* error_msg) {
539 std::set<int>::const_iterator element = open_fds.find(it->first);
540 if (element == open_fds.end()) {
574 // Finally, remove the FD from the set of open_fds. We do this last because
576 open_fds.erase(element);
580 if (open_fds.size() > 0) {
586 // ALOGW("Zygote opened %zd new file descriptor(s).", open_fds.size())
    [all...]
  /external/python/cpython2/Lib/test/
test_subprocess.py 651 def open_fds(): function in function:ProcessTestCase.test_double_close_on_error
655 t = threading.Thread(target=open_fds)
    [all...]
  /external/autotest/client/tests/aiostress/
aio-stress.c 1312 int open_fds = 0; local
    [all...]
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aio-stress.c 1346 int open_fds = 0; local
    [all...]
  /external/python/cpython3/Lib/test/
test_subprocess.py 1113 def open_fds(): function in function:ProcessTestCase.test_double_close_on_error
    [all...]

Completed in 407 milliseconds