Home
last modified time | relevance | path

Searched refs:fds (Results 1 – 5 of 5) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/suite/checker/
DSystemServerFileDescriptorChecker.java57 Integer fds = getIntegerFromCommand(device, "su root ls /proc/" + pid + "/fd | wc -w"); in postExecutionCheck() local
58 if (fds == null) { in postExecutionCheck()
63 if (fds > MAX_EXPECTED_FDS) { in postExecutionCheck()
65 String message = String.format("FDs currently allocated in system server %s", fds); in postExecutionCheck()
/tools/netsim/src/hci/
Dasync_manager.cc227 std::vector<decltype(watched_shared_fds_)::value_type> fds; in runAppropriateCallbacks() local
232 fds.push_back(fdc); in runAppropriateCallbacks()
236 for (auto &p : fds) { in runAppropriateCallbacks()
/tools/test/connectivity/acts/framework/acts/controllers/
Dfuchsia_device.py107 def destroy(fds): argument
108 for fd in fds:
113 def get_info(fds): argument
123 for fd in fds:
/tools/netsim/proto/netsim/
Dstartup.proto25 * When netsim is forked from a parent that owns all fds for HAL communication
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DTestInvocation.java1662 for (Entry<ITestDevice, FreeDeviceState> fds : devicesStates.entrySet()) { in handleAndLogReleaseState()
1664 if ((fds.getKey().getIDevice() instanceof RemoteAvdIDevice in handleAndLogReleaseState()
1665 || fds.getKey().getIDevice() instanceof StubLocalAndroidVirtualDevice) in handleAndLogReleaseState()
1670 if (fds.getKey().getIDevice() instanceof StubDevice) { in handleAndLogReleaseState()
1673 if (FreeDeviceState.UNAVAILABLE.equals(fds.getValue()) in handleAndLogReleaseState()
1674 || FreeDeviceState.UNRESPONSIVE.equals(fds.getValue())) { in handleAndLogReleaseState()
1676 if (fds.getKey() instanceof RemoteAndroidDevice in handleAndLogReleaseState()
1677 || fds.getKey() instanceof NestedRemoteDevice) { in handleAndLogReleaseState()