Lines Matching refs:serviceName
451 ssize_t ServiceManager::handleServiceClientCallback(const std::string& serviceName, in handleServiceClientCallback() argument
453 auto serviceIt = mNameToService.find(serviceName); in handleServiceClientCallback()
454 if (serviceIt == mNameToService.end() || mNameToClientCallback.count(serviceName) < 1) { in handleServiceClientCallback()
469 sendClientCallbackNotifications(serviceName, true); in handleServiceClientCallback()
480 sendClientCallbackNotifications(serviceName, true); in handleServiceClientCallback()
485 sendClientCallbackNotifications(serviceName, false); in handleServiceClientCallback()
492 void ServiceManager::sendClientCallbackNotifications(const std::string& serviceName, bool hasClient… in sendClientCallbackNotifications() argument
493 auto serviceIt = mNameToService.find(serviceName); in sendClientCallbackNotifications()
495 LOG(WARNING) << "sendClientCallbackNotifications could not find service " << serviceName; in sendClientCallbackNotifications()
503 LOG(INFO) << "Notifying " << serviceName << " they have clients: " << hasClients; in sendClientCallbackNotifications()
505 auto ccIt = mNameToClientCallback.find(serviceName); in sendClientCallbackNotifications()