Home
last modified time | relevance | path

Searched refs:onMuteStateChanged (Results 1 – 14 of 14) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallEndpointControllerTest.java145 verify(mConnectionService, never()).onMuteStateChanged(any(), anyBoolean()); in testCurrentEndpointChangedToBluetooth()
166 verify(mConnectionService, never()).onMuteStateChanged(any(), anyBoolean()); in testCurrentEndpointChangedToStreaming()
187 verify(mConnectionService, never()).onMuteStateChanged(any(), anyBoolean()); in testCurrentEndpointChangedBetweenBluetooth()
276 verify(mConnectionService, never()).onMuteStateChanged(any(), anyBoolean()); in testAvailableEndpointChanged()
298 verify(mConnectionService, never()).onMuteStateChanged(any(), anyBoolean()); in testAvailableBluetoothEndpointChanged()
317 verify(mConnectionService, times(1)).onMuteStateChanged(eq(mCall), eq(true)); in testMuteStateChanged()
337 verify(mConnectionService, times(1)).onMuteStateChanged(eq(mCall), eq(false)); in testNotifyForcely()
DInCallServiceFixture.java124 public void onMuteStateChanged(boolean isMuted) {} in onMuteStateChanged() method in InCallServiceFixture.FakeInCallService
DCallTest.java239 verify(tsw, times(1)).onMuteStateChanged(any(), eq(false)); in testMultipleCachedMuteStateChanges()
352 verify(tsw, times(1)).onMuteStateChanged(any(), anyBoolean()); in testAllCachedCallbacks()
DConnectionServiceFixture.java374 public void onMuteStateChanged(String callId, boolean isMuted, in onMuteStateChanged() method in ConnectionServiceFixture.FakeConnectionService
/packages/services/Telecomm/src/com/android/server/telecom/
DCallSourceService.java33 void onMuteStateChanged(Call activeCall, boolean isMuted); in onMuteStateChanged() method
DCachedMuteStateChange.java33 service.onMuteStateChanged(call, mIsMuted); in executeCallback()
DCallEndpointController.java267 call.getConnectionService().onMuteStateChanged(call, isMuted); in notifyMuteStateChange()
269 call.getTransactionServiceWrapper().onMuteStateChanged(call, isMuted); in notifyMuteStateChange()
281 service.onMuteStateChanged(call, isMuted); in onMuteStateChangedOrCache()
DCallsManagerListenerBase.java74 public void onMuteStateChanged(boolean isMuted) { in onMuteStateChanged() method in CallsManagerListenerBase
DTransactionalServiceWrapper.java598 public void onMuteStateChanged(Call call, boolean isMuted) { in onMuteStateChanged() method in TransactionalServiceWrapper
601 mICallEventCallback.onMuteStateChanged(call.getId(), isMuted); in onMuteStateChanged()
DCallAudioRouteController.java766 onMuteStateChanged(mIsMute); in handleMuteChanged()
979 private void onMuteStateChanged(boolean mute) { in onMuteStateChanged() method in CallAudioRouteController
DConnectionServiceWrapper.java2089 public void onMuteStateChanged(Call activeCall, boolean isMuted) { in onMuteStateChanged() method in ConnectionServiceWrapper
2094 mServiceInterface.onMuteStateChanged(callId, isMuted, in onMuteStateChanged()
DInCallController.java1737 public void onMuteStateChanged(boolean isMuted) { in onMuteStateChanged() method in InCallController
1745 inCallService.onMuteStateChanged(isMuted); in onMuteStateChanged()
DCallsManager.java206 void onMuteStateChanged(boolean isMuted); in onMuteStateChanged() method
3791 listener.onMuteStateChanged(isMuted);
/packages/services/Telecomm/testapps/transactionalVoipApp/src/com/android/server/telecom/transactionalVoipApp/
DMyVoipCall.java121 public void onMuteStateChanged(boolean isMuted) { in onMuteStateChanged() method in MyVoipCall