/packages/apps/Dialer/java/com/android/incallui/call/ |
D | TelecomAdapter.java | 141 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/ |
D | BluetoothCall.java | 117 public void playDtmfTone(char digit) { in playDtmfTone() method in BluetoothCall 118 mCall.playDtmfTone(digit); in playDtmfTone()
|
D | BluetoothInCallService.java | 408 call.playDtmfTone((char) dtmf); in sendDtmf()
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | TestConnectionManager.java | 183 mRemote.playDtmfTone(c); in onPlayDtmfTone() 321 mRemote.playDtmfTone(c); in onPlayDtmfTone()
|
/packages/apps/Dialer/java/com/android/incallui/ |
D | DialpadPresenter.java | 71 TelecomAdapter.getInstance().playDtmfTone(call.getId(), c); in processDtmf()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallAdapter.java | 206 public void playDtmfTone(String callId, char digit) { in playDtmfTone() method in InCallAdapter 215 mCallsManager.playDtmfTone(call, digit); in playDtmfTone()
|
D | ConnectionServiceWrapper.java | 1839 void playDtmfTone(Call call, char digit) { in playDtmfTone() method in ConnectionServiceWrapper 1844 mServiceInterface.playDtmfTone(callId, digit, in playDtmfTone()
|
D | Call.java | 2322 public void playDtmfTone(char digit) { in playDtmfTone() method in Call 2327 mConnectionService.playDtmfTone(this, digit); in playDtmfTone()
|
D | CallsManager.java | 2687 public void playDtmfTone(Call call, char digit) { 2692 call.playDtmfTone(digit);
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | CallsManagerTest.java | 525 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()
|
D | ConnectionServiceFixture.java | 371 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/ |
D | BluetoothCallTest.java | 131 assertThrows(NullPointerException.class, () -> mBluetoothCall.playDtmfTone('c')); in playDtmfTone_whenInnerCallIsNull_throwsNPE()
|
D | BluetoothInCallServiceTest.java | 214 verify(mockCall).playDtmfTone(eq((char) TEST_DTMF_TONE)); in testHeadsetSendDTMF()
|