OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mnotificationclients
(Results
1 - 4
of
4
) sorted by null
/frameworks/av/services/audiopolicy/
AudioPolicyService.cpp
143
mNotificationClients
.clear();
155
if (
mNotificationClients
.indexOfKey(uid) < 0) {
161
mNotificationClients
.add(uid, notificationClient);
173
mNotificationClients
.removeItem(uid);
193
for (size_t i = 0; i <
mNotificationClients
.size(); i++) {
194
mNotificationClients
.valueAt(i)->onAudioPortListUpdate();
219
for (size_t i = 0; i <
mNotificationClients
.size(); i++) {
220
mNotificationClients
.valueAt(i)->onAudioPatchListUpdate();
[
all
...]
AudioPolicyService.h
512
DefaultKeyedVector< uid_t, sp<NotificationClient> >
mNotificationClients
;
513
Mutex mNotificationClientsLock; // protects
mNotificationClients
/frameworks/av/services/audioflinger/
AudioFlinger.cpp
320
for (size_t i = 0; i <
mNotificationClients
.size(); ++i) {
321
snprintf(buffer, SIZE, " pid: %d\n",
mNotificationClients
.keyAt(i));
[
all
...]
AudioFlinger.h
660
// protects mClients and
mNotificationClients
.
714
DefaultKeyedVector< pid_t, sp<NotificationClient> >
mNotificationClients
;
[
all
...]
Completed in 75 milliseconds