/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 | 676 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 677 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 682 mPhoneUT.sendBurstDtmf("12345a67890", 0, 0, null); in testSendBurstDtmf() 683 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 688 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 689 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 694 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 695 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf() 699 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 700 verify(mSimulatedCommandsVerifier).sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
|
D | SimulatedCommandsVerifier.java | 845 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommandsVerifier
|
D | SimulatedCommands.java | 1125 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommands 1126 SimulatedCommandsVerifier.getInstance().sendBurstDtmf(dtmfString, on, off, result); in sendBurstDtmf()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipCommandInterface.java | 237 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in SipCommandInterface
|
D | SipPhone.java | 324 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() method in SipPhone
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 236 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in ImsPhoneCommandInterface
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CallManager.java | 1150 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in CallManager 1152 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
|
D | CommandsInterface.java | 1178 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() method
|
D | GsmCdmaPhone.java | 1660 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in GsmCdmaPhone 1674 mCi.sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
|
D | Phone.java | 3155 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in Phone
|
D | RIL.java | 3731 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in RIL 3743 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) {
|