Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/service/src/com/android/car/watchdog/
H A DWatchdogProcessHandler.java287 ArrayList<ClientInfo> clientsToCheck; in sendPingToClients() local
290 clientsToCheck = new ArrayList<>(mClientMap.get(timeout)); in sendPingToClients()
291 for (int i = 0; i < clientsToCheck.size(); i++) { in sendPingToClients()
292 ClientInfo clientInfo = clientsToCheck.get(i); in sendPingToClients()
302 for (int i = 0; i < clientsToCheck.size(); i++) { in sendPingToClients()
303 ClientInfo clientInfo = clientsToCheck.get(i); in sendPingToClients()
/aosp12/packages/services/Car/cpp/watchdog/server/src/
H A DWatchdogProcessService.cpp356 std::vector<ClientInfo> clientsToCheck; in doHealthCheck() local
361 clientsToCheck = mClients[timeout]; in doHealthCheck()
362 for (auto& clientInfo : clientsToCheck) { in doHealthCheck()
372 for (const auto& clientInfo : clientsToCheck) { in doHealthCheck()
385 if (clientsToCheck.size() > 0) { in doHealthCheck()