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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DGsmCdmaPhoneTest.java383 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null);
384 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(),
389 mPhoneUT.sendBurstDtmf("12345a67890", 0, 0, null);
390 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(),
395 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null);
396 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(),
401 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null);
402 verify(mSimulatedCommandsVerifier, times(0)).sendBurstDtmf(nullable(String.class), anyInt(),
406 mPhoneUT.sendBurstDtmf("1234567890", 0, 0, null);
407 verify(mSimulatedCommandsVerifier).sendBurstDtmf("123456789
[all...]
H A DCallManagerTest.java209 assertFalse(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null));
210 verify(mPhone, times(0)).sendBurstDtmf(anyString(), anyInt(), anyInt(), (Message) any());
214 assertTrue(CallManager.getInstance().sendBurstDtmf("12*#", 0, 0, null));
215 verify(mPhone, times(1)).sendBurstDtmf("12*#", 0, 0, null);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java226 public void sendBurstDtmf(String dtmfString, int on, int off, method in class:ImsPhoneCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java227 public void sendBurstDtmf(String dtmfString, int on, int off, method in class:SipCommandInterface
H A DSipPhone.java312 public void sendBurstDtmf(String dtmfString) { method in class:SipPhone
313 loge("sendBurstDtmf() is a CDMA method");
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java.broken346 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallManager.java1288 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
1298 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { method in class:CallManager
1300 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete);
H A DCommandsInterface.java1088 void sendBurstDtmf(String dtmfString, int on, int off, Message result); method in interface:CommandsInterface
H A DGsmCdmaPhone.java1333 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { method in class:GsmCdmaPhone
1335 loge("[GsmCdmaPhone] sendBurstDtmf() is a CDMA method");
1347 mCi.sendBurstDtmf(dtmfString, on, off, onComplete);
H A DPhone.java2419 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
2429 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { method in class:Phone
H A DRIL.java2487 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { method in class:RIL
2499 radioProxy.sendBurstDtmf(rr.mSerial, convertNullToEmptyString(dtmfString), on, off);
2501 handleRadioProxyExceptionForRR(rr, "sendBurstDtmf", e);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1073 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { method in class:SimulatedCommands
1074 SimulatedCommandsVerifier.getInstance().sendBurstDtmf(dtmfString, on, off, result);
H A DSimulatedCommandsVerifier.java822 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { method in class:SimulatedCommandsVerifier
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java665 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { method in class:PhoneMock

Completed in 148 milliseconds