Home
last modified time | relevance | path

Searched refs:mDeathRecipientCaptor (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/rtt/
H A DRttServiceImplTest.java122 private ArgumentCaptor<IBinder.DeathRecipient> mDeathRecipientCaptor = ArgumentCaptor field in RttServiceImplTest
514 verify(mockIbinder, times(numIter)).linkToDeath(mDeathRecipientCaptor.capture(), anyInt()); in testBinderDeathOfRangingApp()
525 mDeathRecipientCaptor.getAllValues().get(0).binderDied(); in testBinderDeathOfRangingApp()
588 verify(mockIbinder).linkToDeath(mDeathRecipientCaptor.capture(), anyInt()); in testBinderDeathWithWorkSource()
593 mDeathRecipientCaptor.getValue().binderDied(); in testBinderDeathWithWorkSource()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DHalDeviceManagerTest.java123 private ArgumentCaptor<IHwBinder.DeathRecipient> mDeathRecipientCaptor = field in HalDeviceManagerTest
298 mDeathRecipientCaptor.getValue().serviceDied(0); in testWifiDeathAndRegistration()
308 mInOrder.verify(mWifiMock).linkToDeath(mDeathRecipientCaptor.capture(), anyLong()); in testWifiDeathAndRegistration()
2735 mInOrder.verify(mWifiMock).linkToDeath(mDeathRecipientCaptor.capture(), anyLong()); in executeAndValidateInitializationSequence()
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
H A DCarWatchdogServiceUnitTest.java210 @Captor private ArgumentCaptor<IBinder.DeathRecipient> mDeathRecipientCaptor; field in CarWatchdogServiceUnitTest
3687 verify(mMockBinder, atLeastOnce()).linkToDeath(mDeathRecipientCaptor.capture(), anyInt()); in captureAndVerifyRegistrationWithDaemon()
3688 mCarWatchdogDaemonBinderDeathRecipient = mDeathRecipientCaptor.getValue(); in captureAndVerifyRegistrationWithDaemon()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHalTest.java151 private ArgumentCaptor<IHwBinder.DeathRecipient> mDeathRecipientCaptor = field in SupplicantP2pIfaceHalTest