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.java202 assertFalse(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null)); in testSendBurstDtmf()
203 verify(mPhone, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), (Message) any()); in testSendBurstDtmf()
207 assertTrue(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null)); in testSendBurstDtmf()
208 verify(mPhone, times(1)).sendBurstDtmf("12*#", 0, 0, null); in testSendBurstDtmf()
DGsmCdmaPhoneTest.java376 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
377 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf()
382 mPhoneUT.sendBurstDtmf("12345a67890", 0, 0, null); in testSendBurstDtmf()
383 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf()
388 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
389 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf()
394 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
395 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(), in testSendBurstDtmf()
399 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
400 verify(mSimulatedCommandsVerifier).sendBurstDtmf("1234567890", 0, 0, null); in testSendBurstDtmf()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipCommandInterface.java227 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in SipCommandInterface
DSipPhone.java312 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() method in SipPhone
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java226 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() method in ImsPhoneCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java1154 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in CallManager
1156 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
DCommandsInterface.java1128 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() method
DGsmCdmaPhone.java1467 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in GsmCdmaPhone
1481 mCi.sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
DPhone.java2642 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in Phone
DRIL.java2961 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in RIL
2973 radioProxy.sendBurstDtmf(rr.mSerial, convertNullToEmptyString(dtmfString), on, off); in sendBurstDtmf()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DPhoneMock.java663 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() method in PhoneMock
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommands.java1083 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() method in SimulatedCommands
1084 SimulatedCommandsVerifier.getInstance().sendBurstDtmf(dtmfString, on, off, result); in sendBurstDtmf()
DSimulatedCommandsVerifier.java822 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/gsm/
DUsimDataDownloadCommands.java.broken346 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) {