Searched refs:mDeathRecipient (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/services/core/java/com/android/server/os/
H A DSchedulingPolicyService.java45 private final IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() { field in class:SchedulingPolicyService
68 synchronized (mDeathRecipient) {
131 synchronized (mDeathRecipient) {
151 mClient.unlinkToDeath(mDeathRecipient, 0);
159 client.linkToDeath(mDeathRecipient, 0);
172 client.unlinkToDeath(mDeathRecipient, 0);
186 mClient.unlinkToDeath(mDeathRecipient, 0);
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DJWakeLock.cpp36 mDeathRecipient(new PMDeathRecipient(this)) {}
41 binder->unlinkToDeath(mDeathRecipient);
57 binder->linkToDeath(mDeathRecipient);
H A DJWakeLock.h59 const sp<PMDeathRecipient> mDeathRecipient; member in class:android::JWakeLock
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DAWakeLock.cpp35 mDeathRecipient(new PMDeathRecipient(this)) {}
40 binder->unlinkToDeath(mDeathRecipient);
56 binder->linkToDeath(mDeathRecipient);
H A DAWakeLock.h59 const sp<PMDeathRecipient> mDeathRecipient; member in class:android::AWakeLock
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
H A DAnnouncementAggregator.java40 private final IBinder.DeathRecipient mDeathRecipient = new DeathRecipient(); field in class:AnnouncementAggregator
51 listener.asBinder().linkToDeath(mDeathRecipient, 0);
120 mListener.asBinder().unlinkToDeath(mDeathRecipient, 0);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DNetworkRegistrationManager.java60 private RegManagerDeathRecipient mDeathRecipient; field in class:NetworkRegistrationManager
132 mDeathRecipient = new RegManagerDeathRecipient(name);
134 mServiceBinder.linkToDeath(mDeathRecipient, 0);
140 mDeathRecipient.binderDied();
149 mServiceBinder.unlinkToDeath(mDeathRecipient, 0);
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
H A DTuner.java47 @NonNull private final IBinder.DeathRecipient mDeathRecipient; field in class:Tuner
61 mDeathRecipient = this::close;
63 mClientCallback.asBinder().linkToDeath(mDeathRecipient, 0);
105 mClientCallback.asBinder().unlinkToDeath(mDeathRecipient, 0);
/frameworks/hardware/interfaces/sensorservice/libsensorndkbridge/
H A DASensorManager.h62 android::sp<SensorDeathRecipient> mDeathRecipient = nullptr; member in struct:ASensorManager
H A DASensorManager.cpp72 mDeathRecipient = new SensorDeathRecipient();
73 Return<bool> linked = mManager->linkToDeath(mDeathRecipient, /*cookie*/ 0);
/frameworks/base/services/core/java/com/android/server/slice/
H A DPinnedSliceState.java57 private final DeathRecipient mDeathRecipient = this::handleRecheckListeners; field in class:PinnedSliceState
127 token.linkToDeath(mDeathRecipient, 0);
137 token.unlinkToDeath(mDeathRecipient, 0);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataServiceManager.java80 private DataServiceManagerDeathRecipient mDeathRecipient; field in class:DataServiceManager
146 mDeathRecipient = new DataServiceManagerDeathRecipient();
150 service.linkToDeath(mDeathRecipient, 0);
155 mDeathRecipient.binderDied();
165 mIDataService.asBinder().unlinkToDeath(mDeathRecipient, 0);
/frameworks/base/telecomm/java/android/telecom/
H A DVideoCallImpl.java51 private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() { field in class:VideoCallImpl
207 mVideoProvider.asBinder().linkToDeath(mDeathRecipient, 0);
H A DRemoteConnectionService.java474 private final DeathRecipient mDeathRecipient = new DeathRecipient() { field in class:RemoteConnectionService
486 mOutgoingConnectionServiceRpc.asBinder().unlinkToDeath(mDeathRecipient, 0);
500 mOutgoingConnectionServiceRpc.asBinder().linkToDeath(mDeathRecipient, 0);
/frameworks/base/telephony/java/android/telephony/
H A DMbmsStreamingSession.java76 private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() { field in class:MbmsStreamingSession
326 streamingService.asBinder().linkToDeath(mDeathRecipient, 0);
H A DMbmsDownloadSession.java238 private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() { field in class:MbmsDownloadSession
354 downloadService.asBinder().linkToDeath(mDeathRecipient, 0);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DMmTelFeatureConnection.java78 private IBinder.DeathRecipient mDeathRecipient = () -> { field in class:MmTelFeatureConnection
389 mBinder.unlinkToDeath(mDeathRecipient, 0);
451 mBinder.linkToDeath(mDeathRecipient, 0);
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProviderWrapper.java75 private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() { field in class:ImsVideoCallProviderWrapper
235 mVideoCallProvider.asBinder().linkToDeath(mDeathRecipient, 0);
/frameworks/av/packages/MediaComponents/src/com/android/media/
H A DMediaController2Impl.java81 private final IBinder.DeathRecipient mDeathRecipient; field in class:MediaController2Impl
142 mDeathRecipient = () -> {
248 binder.asBinder().unlinkToDeath(mDeathRecipient, 0);
969 mSessionBinder.asBinder().linkToDeath(mDeathRecipient, 0);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java149 private final DeathRecipient mDeathRecipient = new DeathRecipient() { field in class:RemotePrintDocument
415 mPrintDocumentAdapter.asBinder().linkToDeath(mDeathRecipient, 0);
438 mPrintDocumentAdapter.asBinder().unlinkToDeath(mDeathRecipient, 0);
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaController2ImplBase.java164 private final IBinder.DeathRecipient mDeathRecipient; field in class:MediaController2ImplBase
231 mDeathRecipient = new IBinder.DeathRecipient() {
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java245 final DeathRecipient mDeathRecipient; field in class:WindowState
722 mDeathRecipient = null;
734 mDeathRecipient = deathRecipient;
1927 mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
H A DWindowManagerService.java569 final IBinder.DeathRecipient mDeathRecipient; field in class:WindowManagerService.RotationWatcher
574 mDeathRecipient = deathRecipient;
1320 if (win.mDeathRecipient == null) {
3952 binder.unlinkToDeath(removed.mDeathRecipient, 0);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java371 mDeathRecipient = dr;
377 return "deathRecipient=" + mDeathRecipient + ", messenger=" + mMessenger;
380 DeathRecipient mDeathRecipient; field in class:WifiP2pServiceImpl.DeathHandlerData
555 binder.unlinkToDeath(dhd.mDeathRecipient, 0);
/frameworks/av/services/audioflinger/
H A DThreads.h485 const sp<PMDeathRecipient> mDeathRecipient; member in class:ThreadBase

Completed in 541 milliseconds

12