Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/property/
DCarPropertyServiceClient.java43 private final IBinder mListenerBinder; field in CarPropertyServiceClient
53 mListenerBinder = listener.asBinder(); in CarPropertyServiceClient()
57 mListenerBinder.linkToDeath(this, /* flags= */ 0); in CarPropertyServiceClient()
59 Slogf.w(TAG, "IBinder=%s is already dead", mListenerBinder); in CarPropertyServiceClient()
122 mListenerBinder.unlinkToDeath(this, /* flags= */ 0); in remove()
140 Slogf.d(TAG, "binderDied %s", mListenerBinder); in binderDied()
151 mUnregisterCallback.onUnregister(propertyIds, mListenerBinder); in binderDied()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/property/
DCarPropertyServiceClientUnitTest.java105 private IBinder mListenerBinder; field in CarPropertyServiceClientUnitTest
113 when(mICarPropertyEventListener.asBinder()).thenReturn(mListenerBinder); in setup()
176 verify(mListenerBinder).unlinkToDeath(any(), anyInt()); in testRemove_multipleProperties_doesNothingIfNoPropertyAdded()