Lines Matching refs:clients

261         std::vector<ClientInfo>& clients = mClients[timeout];  in dump()  local
262 for (auto it = clients.begin(); it != clients.end(); it++, count++) { in dump()
338 std::vector<ClientInfo>& clients = mClients[timeout]; in terminate() local
339 for (auto it = clients.begin(); it != clients.end();) { in terminate()
342 it = clients.erase(it); in terminate()
358 [&](std::vector<ClientInfo>& clients, in binderDied()
361 clients.erase(it); in binderDied()
385 std::vector<ClientInfo>& clients = mClients[timeout]; in registerClientLocked() local
388 clients.push_back(ClientInfo(client, callingPid, callingUid, clientType)); in registerClientLocked()
391 if (clients.size() == 1) { in registerClientLocked()
405 [&](std::vector<ClientInfo>& clients, in unregisterClientLocked()
408 clients.erase(it); in unregisterClientLocked()
426 PingedClientMap& clients = mPingedClients[timeout]; in tellClientAliveLocked() local
427 PingedClientMap::const_iterator it = clients.find(sessionId); in tellClientAliveLocked()
428 if (it == clients.cend() || binder != BnCarWatchdog::asBinder(it->second.client)) { in tellClientAliveLocked()
431 clients.erase(it); in tellClientAliveLocked()
442 std::vector<ClientInfo>& clients = mClients[timeout]; in findClientAndProcessLocked() local
443 for (auto it = clients.begin(); it != clients.end(); it++) { in findClientAndProcessLocked()
448 processor(clients, it); in findClientAndProcessLocked()
457 PingedClientMap& clients = mPingedClients[timeout]; in startHealthCheckingLocked() local
458 clients.clear(); in startHealthCheckingLocked()
470 PingedClientMap& clients = mPingedClients[timeout]; in dumpAndKillClientsIfNotResponding() local
471 for (PingedClientMap::const_iterator it = clients.cbegin(); it != clients.cend(); it++) { in dumpAndKillClientsIfNotResponding()
478 [&](std::vector<ClientInfo>& clients, in dumpAndKillClientsIfNotResponding()
482 clients.erase(it); in dumpAndKillClientsIfNotResponding()