/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CallManagerTest.java | 168 assertFalse(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null)); in testSendBurstDtmf() 169 verify(mPhone, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), (Message) any()); in testSendBurstDtmf() 173 assertTrue(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null)); in testSendBurstDtmf() 174 verify(mPhone, times(1)).sendBurstDtmf("12*#", 0, 0, null); in testSendBurstDtmf()
|
D | GsmCdmaPhoneTest.java | 539 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 540 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 545 mPhoneUT.sendBurstDtmf("12345a67890", 0, 0, null); in testSendBurstDtmf() 546 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 551 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 552 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 557 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 558 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 562 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 563 verify(mSimulatedCommandsVerifier).sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
|
D | SimulatedCommands.java | 1108 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommands 1109 SimulatedCommandsVerifier.getInstance().sendBurstDtmf(dtmfString, on, off, result); in sendBurstDtmf()
|
D | SimulatedCommandsVerifier.java | 832 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommandsVerifier
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/vendor/ |
D | VendorGsmCdmaPhone.java | 133 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in VendorGsmCdmaPhone 138 super.sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 233 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in ImsPhoneCommandInterface
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipCommandInterface.java | 234 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in SipCommandInterface
|
D | SipPhone.java | 320 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() method in SipPhone
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CallManager.java | 1151 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in CallManager 1153 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
|
D | CommandsInterface.java | 1168 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() method
|
D | GsmCdmaPhone.java | 1610 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in GsmCdmaPhone 1624 mCi.sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
|
D | Phone.java | 2906 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in Phone
|
D | RIL.java | 3454 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in RIL 3466 radioProxy.sendBurstDtmf(rr.mSerial, convertNullToEmptyString(dtmfString), on, off); in sendBurstDtmf()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadCommands.java.broken | 346 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) {
|