Home
last modified time | relevance | path

Searched refs:dtmfString (Results 1 – 11 of 11) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipCommandInterface.java237 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() argument
DSipPhone.java324 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java236 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java1150 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() argument
1152 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
DGsmCdmaPhone.java1660 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() argument
1665 for (int itr = 0;itr < dtmfString.length(); itr++) { in sendBurstDtmf()
1666 if (!PhoneNumberUtils.is12Key(dtmfString.charAt(itr))) { in sendBurstDtmf()
1668 … "sendDtmf called with invalid character '" + dtmfString.charAt(itr)+ "'"); in sendBurstDtmf()
1674 mCi.sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
DCommandsInterface.java1178 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() argument
DRIL.java3731 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() argument
3739 + " dtmfString = " + dtmfString + " on = " + on + " off = " + off); in sendBurstDtmf()
3743 radioProxy.sendBurstDtmf(rr.mSerial, convertNullToEmptyString(dtmfString), on, off); in sendBurstDtmf()
DPhone.java3155 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSimulatedCommandsVerifier.java845 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() argument
DSimulatedCommands.java1125 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() argument
1126 SimulatedCommandsVerifier.getInstance().sendBurstDtmf(dtmfString, on, off, result); 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) {