Searched refs:callbackBinder (Results 1 – 5 of 5) sorted by relevance
107 IBinder callbackBinder = extras.getBinder(INPUT_CALLBACK_BINDER_KEY); in doCallbackIfPossible() local108 if (callbackBinder == null) { in doCallbackIfPossible()115 callbackBinder.transact(INPUT_CALLBACK_BINDER_CODE, dataIn, null, IBinder.FLAG_ONEWAY); in doCallbackIfPossible()
390 std::shared_ptr<StatsPullAtomCallbackInternal> callbackBinder = in AStatsManager_setPullAtomCallback() local397 pullers[atom_tag] = callbackBinder; in AStatsManager_setPullAtomCallback()400 CallbackOperationsHandler::getInstance().registerCallback(atom_tag, callbackBinder); in AStatsManager_setPullAtomCallback()
548 IBinder callbackBinder = mock(IBinder.class); in testRequestConnectionAlreadyConnected() local549 when(callback.asBinder()).thenReturn(callbackBinder); in testRequestConnectionAlreadyConnected()571 IBinder callbackBinder = mock(IBinder.class); in testRequestConnectionWithPendingConnection() local572 when(callback.asBinder()).thenReturn(callbackBinder); in testRequestConnectionWithPendingConnection()
863 IBinder callbackBinder = mock(IBinder.class); in testUnregisterStateCallbackWithOtherDiscoverers() local864 when(callback2.asBinder()).thenReturn(callbackBinder); in testUnregisterStateCallbackWithOtherDiscoverers()
3260 IBinder callbackBinder = callback.asBinder(); in registerClient() local3265 verify(callbackBinder).linkToDeath(deathRecipientCaptor.capture(), eq(0)); in registerClient()3267 Pair.create(callbackBinder, deathRecipientCaptor.getValue())); in registerClient()3269 verify(callbackBinder, never()).linkToDeath(any(), anyInt()); in registerClient()