Home
last modified time | relevance | path

Searched refs:mDeathRecipient (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DContextMap.java84 private IBinder.DeathRecipient mDeathRecipient; field in ContextMap.App
132 mDeathRecipient = deathRecipient; in linkToDeath()
142 if (mDeathRecipient != null) { in unlinkToDeath()
145 binder.unlinkToDeath(mDeathRecipient, 0); in unlinkToDeath()
/packages/services/Car/service/src/com/android/car/
DCarProjectionService.java462 token.linkToDeath(client.mDeathRecipient, 0 /* flags */); in getOrCreateProjectionReceiverClientLocked()
475 token.unlinkToDeath(client.mDeathRecipient, 0); in unregisterProjectionReceiverClient()
1053 private final DeathRecipient mDeathRecipient; field in CarProjectionService.ProjectionReceiverClient
1057 mDeathRecipient = deathRecipient; in ProjectionReceiverClient()
1063 + "mDeathRecipient=" + mDeathRecipient in toString()
/packages/services/Telecomm/src/com/android/server/telecom/
DVideoProviderProxy.java96 private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() { field in VideoProviderProxy
122 mConectionServiceVideoProvider.asBinder().linkToDeath(mDeathRecipient, 0); in VideoProviderProxy()
/packages/apps/SecureElement/src/com/android/se/
DTerminal.java185 private HwBinder.DeathRecipient mDeathRecipient = new SecureElementDeathRecipient(); field in Terminal
258 mSEHal.linkToDeath(mDeathRecipient, 0); in initialize()
340 mSEHal.unlinkToDeath(mDeathRecipient); in close()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/vms/
DVmsClientManagerTest.java143 private ArgumentCaptor<IBinder.DeathRecipient> mDeathRecipient; field in VmsClientManagerTest
910 verify(mSubscriberBinder1).linkToDeath(mDeathRecipient.capture(), eq(0)); in testRemoveSubscriber_OnDeath()
911 mDeathRecipient.getValue().binderDied(); in testRemoveSubscriber_OnDeath()