Home
last modified time | relevance | path

Searched refs:sendBurstDtmf (Results 1 – 13 of 13) 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.java676 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()
DSimulatedCommandsVerifier.java845 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommandsVerifier
DSimulatedCommands.java1125 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/
DSipCommandInterface.java237 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in SipCommandInterface
DSipPhone.java324 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() method in SipPhone
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java236 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in ImsPhoneCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java1150 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()
DCommandsInterface.java1178 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() method
DGsmCdmaPhone.java1660 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()
DPhone.java3155 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in Phone
DRIL.java3731 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/
DUsimDataDownloadCommands.java.broken346 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) {