Home
last modified time | relevance | path

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

/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() argument
134 Character c = dtmfString.charAt(0); in sendBurstDtmf()
135 if(dtmfString.length() == 1 && c == 'D') { in sendBurstDtmf()
136 dtmfString = c.toString(); in sendBurstDtmf()
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() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipCommandInterface.java234 public void sendBurstDtmf(String dtmfString, int on, int off, in sendBurstDtmf() argument
DSipPhone.java320 public void sendBurstDtmf(String dtmfString) { in sendBurstDtmf() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java1151 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() argument
1153 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
DGsmCdmaPhone.java1610 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() argument
1615 for (int itr = 0;itr < dtmfString.length(); itr++) { in sendBurstDtmf()
1616 if (!PhoneNumberUtils.is12Key(dtmfString.charAt(itr))) { in sendBurstDtmf()
1618 … "sendDtmf called with invalid character '" + dtmfString.charAt(itr)+ "'"); in sendBurstDtmf()
1624 mCi.sendBurstDtmf(dtmfString, on, off, onComplete); in sendBurstDtmf()
DCommandsInterface.java1168 void sendBurstDtmf(String dtmfString, int on, int off, Message result); in sendBurstDtmf() argument
DRIL.java3454 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() argument
3462 + " dtmfString = " + dtmfString + " on = " + on + " off = " + off); in sendBurstDtmf()
3466 radioProxy.sendBurstDtmf(rr.mSerial, convertNullToEmptyString(dtmfString), on, off); in sendBurstDtmf()
DPhone.java2906 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { in sendBurstDtmf() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSimulatedCommands.java1108 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { in sendBurstDtmf() argument
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() argument
/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) {