Home
last modified time | relevance | path

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

/frameworks/av/services/oboeservice/
DAAudioClientTracker.cpp78 sp<NotificationClient> notificationClient = new NotificationClient(pid); in registerClient() local
79 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); in registerClientStream()
117 mNotificationClients[pid] = notificationClient; in registerClientStream()
119 notificationClient->registerClientStream(serviceStream); in registerClientStream()
/frameworks/av/services/audioflinger/
DAudioFlinger.cpp1630 sp<NotificationClient> notificationClient = new NotificationClient(this, in registerClient() local
1633 ALOGV("registerClient() client %p, pid %d", notificationClient.get(), pid); in registerClient()
1635 mNotificationClients.add(pid, notificationClient); in registerClient()
1638 binder->linkToDeath(notificationClient); in registerClient()