Home
last modified time | relevance | path

Searched refs:notificationClient (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/services/oboeservice/
DAAudioClientTracker.cpp79 sp<NotificationClient> notificationClient = new NotificationClient(pid, binder); in registerClient() local
80 mNotificationClients[pid] = notificationClient; in registerClient()
82 status_t status = binder->linkToDeath(notificationClient); in registerClient()
112 sp<NotificationClient> notificationClient = mNotificationClients[pid]; in registerClientStream() local
113 if (notificationClient == 0) { in registerClientStream()
116 notificationClient = new NotificationClient(pid, nullptr); in registerClientStream()
117 mNotificationClients[pid] = notificationClient; in registerClientStream()
119 notificationClient->registerClientStream(serviceStream); in registerClientStream()
/frameworks/av/services/audiopolicy/service/
DAudioPolicyService.cpp125 sp<NotificationClient> notificationClient = new NotificationClient(this, in registerClient() local
131 mNotificationClients.add(token, notificationClient); in registerClient()
134 binder->linkToDeath(notificationClient); in registerClient()
/frameworks/av/services/audioflinger/
DAudioFlinger.cpp1736 sp<NotificationClient> notificationClient = new NotificationClient(this, in registerClient() local
1739 ALOGV("registerClient() client %p, pid %d", notificationClient.get(), pid); in registerClient()
1741 mNotificationClients.add(pid, notificationClient); in registerClient()
1744 binder->linkToDeath(notificationClient); in registerClient()