Searched refs:mNotificationClients (Results 1 – 6 of 6) sorted by relevance
55 for (const auto& it : mNotificationClients) { in dump()77 if (mNotificationClients.count(pid) == 0) { in registerClient()80 mNotificationClients[pid] = notificationClient; in registerClient()94 mNotificationClients.erase(pid); in unregisterClient()99 auto it = mNotificationClients.find(pid); in getStreamCount()100 if (it != mNotificationClients.end()) { in getStreamCount()120 auto it = mNotificationClients.find(pid); in unregisterClientStream()121 if (it != mNotificationClients.end()) { in unregisterClientStream()143 sp<NotificationClient> notificationClient = mNotificationClients[pid]; in getNotificationClient_l()148 mNotificationClients[pid] = notificationClient; in getNotificationClient_l()
122 std::map<pid_t, android::sp<NotificationClient>> mNotificationClients
178 mNotificationClients.clear(); in ~AudioPolicyService()202 if (mNotificationClients.indexOfKey(token) < 0) { in registerClient()209 mNotificationClients.add(token, notificationClient); in registerClient()225 if (mNotificationClients.indexOfKey(token) < 0) { in setAudioPortCallbacksEnabled()240 if (mNotificationClients.indexOfKey(token) < 0) { in setAudioVolumeGroupCallbacksEnabled()254 mNotificationClients.removeItem(token); in removeNotificationClient()279 for (size_t i = 0; i < mNotificationClients.size(); i++) { in doOnAudioPortListUpdate()292 for (size_t i = 0; i < mNotificationClients.size(); i++) { in doOnAudioPatchListUpdate()305 for (size_t i = 0; i < mNotificationClients.size(); i++) { in doOnAudioVolumeGroupChanged()320 for (size_t i = 0; i < mNotificationClients.size(); i++) { in doOnDynamicPolicyMixStateUpdate()[all …]
987 DefaultKeyedVector<int64_t, sp<NotificationClient>> mNotificationClients
579 for (size_t i = 0; i < mNotificationClients.size(); ++i) { in dumpClients()580 const pid_t pid = mNotificationClients[i]->getPid(); in dumpClients()581 const uid_t uid = mNotificationClients[i]->getUid(); in dumpClients()1814 if (mNotificationClients.indexOfKey(pid) < 0) { in registerClient()1822 mNotificationClients.add(pid, notificationClient); in registerClient()1849 mNotificationClients.removeItem(pid); in removeNotificationClient()1886 size_t size = mNotificationClients.size(); in ioConfigChanged()1888 if ((pid == 0) || (mNotificationClients.keyAt(i) == pid)) { in ioConfigChanged()1889 mNotificationClients.valueAt(i)->audioFlingerClient()->ioConfigChanged(eventAidl, in ioConfigChanged()3101 if (mNotificationClients.indexOfKey(caller) < 0) { in acquireAudioSessionId()
924 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients; variable