/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | GsmCdmaPhoneTest.java | 309 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 310 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), in testSendBurstDtmf() 315 mPhoneUT.sendBurstDtmf("12345a67890", 0, 0, null); in testSendBurstDtmf() 316 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), in testSendBurstDtmf() 321 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 322 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), in testSendBurstDtmf() 327 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 328 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), in testSendBurstDtmf() 332 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf() 333 verify(mSimulatedCommandsVerifier).sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
|
D | CallManagerTest.java | 207 assertFalse(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null)); in testSendBurstDtmf() 208 verify(mPhone, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), (Message) any()); in testSendBurstDtmf() 212 assertTrue(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null)); in testSendBurstDtmf() 213 verify(mPhone, times(1)).sendBurstDtmf("12*#", 0, 0, null); in testSendBurstDtmf()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 211 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 | 212 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in SipCommandInterface
|
D | SipPhone.java | 312 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() method in SipPhone
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CallManager.java | 1294 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in CallManager 1296 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
|
D | CommandsInterface.java | 1073 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() method
|
D | GsmCdmaPhone.java | 1238 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in GsmCdmaPhone 1252 mCi.sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
|
D | Phone.java | 2217 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in Phone
|
D | RIL.java | 1403 sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in RIL
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
D | SimulatedCommands.java | 1022 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommands 1023 SimulatedCommandsVerifier.getInstance().sendBurstDtmf(dtmfString, on, off, result); in sendBurstDtmf()
|
D | SimulatedCommandsVerifier.java | 805 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommandsVerifier
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
D | PhoneMock.java | 657 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in PhoneMock
|
/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) {
|