Home
last modified time | relevance | path

Searched refs:NotificationClient (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/frameworks/av/services/oboeservice/
H A DAAudioClientTracker.cpp79 const sp<NotificationClient> notificationClient = new NotificationClient(pid, binder); in registerClient()
142 sp<AAudioClientTracker::NotificationClient>
144 sp<NotificationClient> notificationClient = mNotificationClients[pid]; in getNotificationClient_l()
148 notificationClient = new AAudioClientTracker::NotificationClient(pid, nullptr); in getNotificationClient_l()
158 AAudioClientTracker::NotificationClient::NotificationClient(pid_t pid, const sp<IBinder>& binder) in NotificationClient() function in AAudioClientTracker::NotificationClient
162 int32_t AAudioClientTracker::NotificationClient::getStreamCount() { in getStreamCount()
167 aaudio_result_t AAudioClientTracker::NotificationClient::registerClientStream( in registerClientStream()
174 aaudio_result_t AAudioClientTracker::NotificationClient::unregisterClientStream( in unregisterClientStream()
182 void AAudioClientTracker::NotificationClient::binderDied(const wp<IBinder>& who __unused) { in binderDied()
204 const sp<NotificationClient> keep(this); in binderDied()
[all …]
H A DAAudioClientTracker.h84 class NotificationClient : public IBinder::DeathRecipient {
86 NotificationClient(pid_t pid, const android::sp<IBinder>& binder);
87 ~NotificationClient() override = default;
120 android::sp<NotificationClient> getNotificationClient_l(pid_t pid)
124 std::map<pid_t, android::sp<NotificationClient>> mNotificationClients
/aosp_15_r20/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp384 sp<NotificationClient> notificationClient = new NotificationClient(this, in registerClient()
674 AudioPolicyService::NotificationClient::NotificationClient( in NotificationClient() function in android::AudioPolicyService::NotificationClient
684 AudioPolicyService::NotificationClient::~NotificationClient() in ~NotificationClient()
688 void AudioPolicyService::NotificationClient::binderDied(const wp<IBinder>& who __unused) in binderDied()
690 sp<NotificationClient> keep(this); in binderDied()
697 void AudioPolicyService::NotificationClient::onAudioPortListUpdate() in onAudioPortListUpdate()
704 void AudioPolicyService::NotificationClient::onAudioPatchListUpdate() in onAudioPatchListUpdate()
711 void AudioPolicyService::NotificationClient::onAudioVolumeGroupChanged(volume_group_t group, in onAudioVolumeGroupChanged()
720 void AudioPolicyService::NotificationClient::onDynamicPolicyMixStateUpdate( in onDynamicPolicyMixStateUpdate()
729 void AudioPolicyService::NotificationClient::onRecordingConfigurationUpdate( in onRecordingConfigurationUpdate()
[all …]
H A DAudioPolicyService.h971 class NotificationClient : public IBinder::DeathRecipient {
973 NotificationClient(const sp<AudioPolicyService>& service,
976 virtual ~NotificationClient();
1005 NotificationClient(const NotificationClient&);
1006 NotificationClient& operator = (const NotificationClient&);
1113 DefaultKeyedVector<int64_t, sp<NotificationClient>> mNotificationClients
/aosp_15_r20/frameworks/av/services/audioflinger/
H A DAudioFlinger.h492 class NotificationClient : public IBinder::DeathRecipient {
494 NotificationClient(const sp<AudioFlinger>& audioFlinger,
498 virtual ~NotificationClient();
508 DISALLOW_COPY_AND_ASSIGN(NotificationClient);
714 std::map<pid_t, sp<NotificationClient>> mNotificationClients GUARDED_BY(clientMutex());
H A DAudioFlinger.cpp2236 auto notificationClient = sp<NotificationClient>::make( in registerClient()
2384 AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger, in NotificationClient() function in android::AudioFlinger::NotificationClient
2395 AudioFlinger::NotificationClient::~NotificationClient() in ~NotificationClient()
2399 void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who __unused) in binderDied()
2401 const auto keep = sp<NotificationClient>::fromExisting(this); in binderDied()