Searched defs:sendDtmf (Results 1 - 21 of 21) sorted by relevance

/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioGroup.java183 public void sendDtmf(int event) { method in class:AudioGroup
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
H A DTestMmTelFeature.java41 public void sendDtmf(char c, Message result) { method in class:TestMmTelFeature.TestImsCallSession
/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsCallSessionImplBase.java225 public void sendDtmf(char c, Message result) {
226 ImsCallSessionImplBase.this.sendDtmf(c, result);
527 public void sendDtmf(char c, Message result) { method in class:ImsCallSessionImplBase
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
H A DImsCallSessionImplBase.java307 public void sendDtmf(char c, Message result) { method in class:ImsCallSessionImplBase
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java903 public void sendDtmf(int code) { method in class:SipAudioCall
904 sendDtmf(code, null);
917 public void sendDtmf(int code, Message result) { method in class:SipAudioCall
922 if (DBG) log("sendDtmf: code=" + code + " result=" + result);
923 audioGroup.sendDtmf(code);
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsCallSession.java937 public void sendDtmf(char c, Message result) { method in class:ImsCallSession
943 miSession.sendDtmf(c, result);
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp105 void sendDtmf(int event);
228 void AudioStream::sendDtmf(int event) function in class:__anon1944::AudioStream
481 bool sendDtmf(int event);
652 bool AudioGroup::sendDtmf(int event) function in class:__anon1944::AudioGroup
743 stream->sendDtmf(event);
1051 void sendDtmf(JNIEnv *env, jobject thiz, jint event) function in namespace:__anon1944
1054 if (group && !group->sendDtmf(event)) {
1063 {"nativeSendDtmf", "(I)V", (void *)sendDtmf},
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java288 public void sendDtmf(char c) { method in class:SipPhone
290 loge("sendDtmf called with invalid character '" + c + "'");
293 mForegroundCall.sendDtmf(c);
303 sendDtmf(c);
657 void sendDtmf(char c) { method in class:SipPhone.SipCall
658 if (SC_DBG) log("sendDtmf: c=" + c);
661 if (SC_DBG) log("sendDtmf: audioGroup == null, ignore c=" + c);
664 audioGroup.sendDtmf(convertDtmf(c));
H A DSipCommandInterface.java215 public void sendDtmf(char c, Message result) { method in class:SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallManager.java1216 public boolean sendDtmf(char c) { method in class:CallManager
1220 Rlog.d(LOG_TAG, " sendDtmf(" + c + ")");
1225 getActiveFgCall().getPhone().sendDtmf(c);
1230 Rlog.d(LOG_TAG, "End sendDtmf(" + c + ")");
1288 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
H A DPhoneInternalInterface.java493 void sendDtmf(char c); method in interface:PhoneInternalInterface
H A DGsmCdmaPhone.java1308 public void sendDtmf(char c) { method in class:GsmCdmaPhone
1310 loge("sendDtmf called with invalid character '" + c + "'");
1313 mCi.sendDtmf(c, null);
1341 "sendDtmf called with invalid character '" + dtmfString.charAt(itr)+ "'");
H A DCommandsInterface.java1066 void sendDtmf(char c, Message result); method in interface:CommandsInterface
H A DRIL.java1039 public void sendDtmf(char c, Message result) { method in class:RIL
1051 radioProxy.sendDtmf(rr.mSerial, c + "");
1053 handleRadioProxyExceptionForRR(rr, "sendDtmf", e);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java724 sendDtmf(char c) { method in class:ImsPhone
726 loge("sendDtmf called with invalid character '" + c + "'");
729 mCT.sendDtmf(c, null);
H A DImsPhoneCallTracker.java1599 public void sendDtmf(char c, Message result) { method in class:ImsPhoneCallTracker
1600 if (DBG) log("sendDtmf");
1604 imscall.sendDtmf(c, result);
H A DImsPhoneCommandInterface.java214 public void sendDtmf(char c, Message result) { method in class:ImsPhoneCommandInterface
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java1577 public void sendDtmf(char c, Message result) { method in class:ImsCall
1578 logi("sendDtmf :: code=" + c);
1582 mSession.sendDtmf(c, result);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1043 public void sendDtmf(char c, Message result) { method in class:SimulatedCommands
H A DSimulatedCommandsVerifier.java807 public void sendDtmf(char c, Message result) { method in class:SimulatedCommandsVerifier
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java1166 public void sendDtmf(char c) { method in class:PhoneMock

Completed in 376 milliseconds