HomeSort by relevance Sort by last modified time
    Searched refs:mNotificationClients (Results 1 - 6 of 6) sorted by null

  /frameworks/av/services/oboeservice/
AAudioClientTracker.cpp 54 for (const auto& it : mNotificationClients) {
71 if (mNotificationClients.count(pid) == 0) {
73 mNotificationClients[pid] = notificationClient;
90 mNotificationClients.erase(pid);
95 auto it = mNotificationClients.find(pid);
96 if (it != mNotificationClients.end()) {
108 sp<NotificationClient> notificationClient = mNotificationClients[pid];
113 mNotificationClients[pid] = notificationClient;
125 auto it = mNotificationClients.find(pid);
126 if (it != mNotificationClients.end())
    [all...]
AAudioClientTracker.h 97 std::map<pid_t, android::sp<NotificationClient>> mNotificationClients;
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.cpp 93 mNotificationClients.clear();
108 if (mNotificationClients.indexOfKey(uid) < 0) {
114 mNotificationClients.add(uid, notificationClient);
126 if (mNotificationClients.indexOfKey(uid) < 0) {
129 mNotificationClients.valueFor(uid)->setAudioPortCallbacksEnabled(enabled);
137 mNotificationClients.removeItem(uid);
155 for (size_t i = 0; i < mNotificationClients.size(); i++) {
156 mNotificationClients.valueAt(i)->onAudioPortListUpdate();
168 for (size_t i = 0; i < mNotificationClients.size(); i++) {
169 mNotificationClients.valueAt(i)->onAudioPatchListUpdate()
    [all...]
AudioPolicyService.h 579 DefaultKeyedVector< uid_t, sp<NotificationClient> > mNotificationClients;
580 Mutex mNotificationClientsLock; // protects mNotificationClients
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 399 for (size_t i = 0; i < mNotificationClients.size(); ++i) {
400 snprintf(buffer, SIZE, " pid: %d\n", mNotificationClients.keyAt(i));
    [all...]
AudioFlinger.h 723 // protects mClients and mNotificationClients.
    [all...]

Completed in 217 milliseconds