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 55 for (const auto& it : mNotificationClients) {
77 if (mNotificationClients.count(pid) == 0) {
79 mNotificationClients[pid] = notificationClient;
94 mNotificationClients.erase(pid);
99 auto it = mNotificationClients.find(pid);
100 if (it != mNotificationClients.end()) {
112 sp<NotificationClient> notificationClient = mNotificationClients[pid];
117 mNotificationClients[pid] = notificationClient;
129 auto it = mNotificationClients.find(pid);
130 if (it != mNotificationClients.end())
    [all...]
AAudioClientTracker.h 97 std::map<pid_t, android::sp<NotificationClient>> mNotificationClients;
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.cpp 101 mNotificationClients.clear();
125 if (mNotificationClients.indexOfKey(token) < 0) {
132 mNotificationClients.add(token, notificationClient);
147 if (mNotificationClients.indexOfKey(token) < 0) {
150 mNotificationClients.valueFor(token)->setAudioPortCallbacksEnabled(enabled);
161 if (mNotificationClients.indexOfKey(token) < 0) {
164 mNotificationClients.valueFor(token)->setAudioVolumeGroupCallbacksEnabled(enabled);
173 mNotificationClients.removeItem(token);
178 for (size_t i = 0; i < mNotificationClients.size(); i++) {
179 if (mNotificationClients.valueAt(i)->uid() == uid)
    [all...]
AudioPolicyService.h     [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 427 for (size_t i = 0; i < mNotificationClients.size(); ++i) {
428 snprintf(buffer, SIZE, " pid: %d\n", mNotificationClients.keyAt(i));
    [all...]
AudioFlinger.h 778 // protects mClients and mNotificationClients.
    [all...]

Completed in 384 milliseconds