Home
last modified time | relevance | path

Searched refs:sendBurstDtmf (Results 1 – 14 of 14) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCallManagerTest.java168 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()
DGsmCdmaPhoneTest.java539 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()
DSimulatedCommands.java1108 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()
DSimulatedCommandsVerifier.java832 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/
DVendorGsmCdmaPhone.java133 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/
DImsPhoneCommandInterface.java233 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in ImsPhoneCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipCommandInterface.java234 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in SipCommandInterface
DSipPhone.java320 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() method in SipPhone
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java1151 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()
DCommandsInterface.java1168 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() method
DGsmCdmaPhone.java1610 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()
DPhone.java2906 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in Phone
DRIL.java3454 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/
DUsimDataDownloadCommands.java.broken346 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) {