Home
last modified time | relevance | path

Searched refs:playDtmfTone (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/call/
DTelecomAdapter.java141 public void playDtmfTone(String callId, char digit) { in playDtmfTone() method in TelecomAdapter
144 call.playDtmfTone(digit); in playDtmfTone()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothCall.java117 public void playDtmfTone(char digit) { in playDtmfTone() method in BluetoothCall
118 mCall.playDtmfTone(digit); in playDtmfTone()
DBluetoothInCallService.java408 call.playDtmfTone((char) dtmf); in sendDtmf()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestConnectionManager.java183 mRemote.playDtmfTone(c); in onPlayDtmfTone()
321 mRemote.playDtmfTone(c); in onPlayDtmfTone()
/packages/apps/Dialer/java/com/android/incallui/
DDialpadPresenter.java71 TelecomAdapter.getInstance().playDtmfTone(call.getId(), c); in processDtmf()
/packages/services/Telecomm/src/com/android/server/telecom/
DInCallAdapter.java206 public void playDtmfTone(String callId, char digit) { in playDtmfTone() method in InCallAdapter
215 mCallsManager.playDtmfTone(call, digit); in playDtmfTone()
DConnectionServiceWrapper.java1839 void playDtmfTone(Call call, char digit) { in playDtmfTone() method in ConnectionServiceWrapper
1844 mServiceInterface.playDtmfTone(callId, digit, in playDtmfTone()
DCall.java2322 public void playDtmfTone(char digit) { in playDtmfTone() method in Call
2327 mConnectionService.playDtmfTone(this, digit); in playDtmfTone()
DCallsManager.java2687 public void playDtmfTone(Call call, char digit) {
2692 call.playDtmfTone(digit);
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java525 mCallsManager.playDtmfTone(callSpy, '1'); in testPlayDtmfWhenActive()
526 verify(callSpy).playDtmfTone(anyChar()); in testPlayDtmfWhenActive()
539 mCallsManager.playDtmfTone(callSpy, '1'); in testSuppessDtmfWhenHeld()
540 verify(callSpy, never()).playDtmfTone(anyChar()); in testSuppessDtmfWhenHeld()
551 mCallsManager.playDtmfTone(callSpy, '1'); in testCancelDtmfWhenHeld()
DConnectionServiceFixture.java371 public void playDtmfTone(String callId, char digit, in playDtmfTone() method in ConnectionServiceFixture.FakeConnectionService
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothCallTest.java131 assertThrows(NullPointerException.class, () -> mBluetoothCall.playDtmfTone('c')); in playDtmfTone_whenInnerCallIsNull_throwsNPE()
DBluetoothInCallServiceTest.java214 verify(mockCall).playDtmfTone(eq((char) TEST_DTMF_TONE)); in testHeadsetSendDTMF()