Lines Matching refs:foundClient
169 ResourceInfos::iterator foundClient = infos.find(clientId); in removeResource() local
170 if (foundClient == infos.end()) { in removeResource()
175 ResourceInfo& info = foundClient->second; in removeResource()
218 ResourceInfos::iterator foundClient = infos.find(clientId); in removeResource() local
219 if (foundClient == infos.end()) { in removeResource()
224 const ResourceInfo& info = foundClient->second; in removeResource()
233 infos.erase(foundClient); in removeResource()
246 ResourceInfos::const_iterator foundClient = infos.find(clientId); in getClient() local
247 if (foundClient == infos.end()) { in getClient()
252 return foundClient->second.client; in getClient()
263 ResourceInfos::iterator foundClient = infos.find(clientId); in removeClient() local
264 if (foundClient == infos.end()) { in removeClient()
269 infos.erase(foundClient); in removeClient()
290 ResourceInfos::iterator foundClient = infos.find(clientId); in markClientForPendingRemoval() local
291 if (foundClient == infos.end()) { in markClientForPendingRemoval()
296 ResourceInfo& info = foundClient->second; in markClientForPendingRemoval()
399 bool foundClient = false; in getAllClients() local
406 foundClient = true; in getAllClients()
412 return foundClient; in getAllClients()
751 ResourceInfos::const_iterator foundClient = infos.find(clientId); in getResourceInfo() local
752 if (foundClient == infos.end()) { in getResourceInfo()
757 return &foundClient->second; in getResourceInfo()