/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | CallEndpointControllerTest.java | 145 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()
|
D | InCallServiceFixture.java | 124 public void onMuteStateChanged(boolean isMuted) {} in onMuteStateChanged() method in InCallServiceFixture.FakeInCallService
|
D | CallTest.java | 239 verify(tsw, times(1)).onMuteStateChanged(any(), eq(false)); in testMultipleCachedMuteStateChanges() 352 verify(tsw, times(1)).onMuteStateChanged(any(), anyBoolean()); in testAllCachedCallbacks()
|
D | ConnectionServiceFixture.java | 374 public void onMuteStateChanged(String callId, boolean isMuted, in onMuteStateChanged() method in ConnectionServiceFixture.FakeConnectionService
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | CallSourceService.java | 33 void onMuteStateChanged(Call activeCall, boolean isMuted); in onMuteStateChanged() method
|
D | CachedMuteStateChange.java | 33 service.onMuteStateChanged(call, mIsMuted); in executeCallback()
|
D | CallEndpointController.java | 267 call.getConnectionService().onMuteStateChanged(call, isMuted); in notifyMuteStateChange() 269 call.getTransactionServiceWrapper().onMuteStateChanged(call, isMuted); in notifyMuteStateChange() 281 service.onMuteStateChanged(call, isMuted); in onMuteStateChangedOrCache()
|
D | CallsManagerListenerBase.java | 74 public void onMuteStateChanged(boolean isMuted) { in onMuteStateChanged() method in CallsManagerListenerBase
|
D | TransactionalServiceWrapper.java | 598 public void onMuteStateChanged(Call call, boolean isMuted) { in onMuteStateChanged() method in TransactionalServiceWrapper 601 mICallEventCallback.onMuteStateChanged(call.getId(), isMuted); in onMuteStateChanged()
|
D | CallAudioRouteController.java | 766 onMuteStateChanged(mIsMute); in handleMuteChanged() 979 private void onMuteStateChanged(boolean mute) { in onMuteStateChanged() method in CallAudioRouteController
|
D | ConnectionServiceWrapper.java | 2089 public void onMuteStateChanged(Call activeCall, boolean isMuted) { in onMuteStateChanged() method in ConnectionServiceWrapper 2094 mServiceInterface.onMuteStateChanged(callId, isMuted, in onMuteStateChanged()
|
D | InCallController.java | 1737 public void onMuteStateChanged(boolean isMuted) { in onMuteStateChanged() method in InCallController 1745 inCallService.onMuteStateChanged(isMuted); in onMuteStateChanged()
|
D | CallsManager.java | 206 void onMuteStateChanged(boolean isMuted); in onMuteStateChanged() method 3791 listener.onMuteStateChanged(isMuted);
|
/packages/services/Telecomm/testapps/transactionalVoipApp/src/com/android/server/telecom/transactionalVoipApp/ |
D | MyVoipCall.java | 121 public void onMuteStateChanged(boolean isMuted) { in onMuteStateChanged() method in MyVoipCall
|