Searched defs:sendDtmf (Results 1 - 19 of 19) 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/base/telephony/java/android/telephony/ims/stub/
H A DImsCallSessionImplBase.java300 public void sendDtmf(char c, Message result) throws RemoteException { method in class:ImsCallSessionImplBase
/frameworks/base/telephony/java/com/android/ims/internal/
H A DImsCallSession.java870 public void sendDtmf(char c, Message result) { method in class:ImsCallSession
876 miSession.sendDtmf(c, result);
/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/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp105 void sendDtmf(int event);
228 void AudioStream::sendDtmf(int event) function in class:__anon1950::AudioStream
481 bool sendDtmf(int event);
652 bool AudioGroup::sendDtmf(int event) function in class:__anon1950::AudioGroup
743 stream->sendDtmf(event);
1051 void sendDtmf(JNIEnv *env, jobject thiz, jint event) function in namespace:__anon1950
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.java203 public void sendDtmf(char c, Message result) { method in class:SipCommandInterface
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java1493 public void sendDtmf(char c, Message result) { method in class:ImsCall
1494 logi("sendDtmf :: code=" + c);
1498 mSession.sendDtmf(c, result);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallManager.java1212 public boolean sendDtmf(char c) { method in class:CallManager
1216 Rlog.d(LOG_TAG, " sendDtmf(" + c + ")");
1221 getActiveFgCall().getPhone().sendDtmf(c);
1226 Rlog.d(LOG_TAG, "End sendDtmf(" + c + ")");
1284 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
H A DPhoneInternalInterface.java464 void sendDtmf(char c); method in interface:PhoneInternalInterface
H A DGsmCdmaPhone.java1303 public void sendDtmf(char c) { method in class:GsmCdmaPhone
1305 loge("sendDtmf called with invalid character '" + c + "'");
1308 mCi.sendDtmf(c, null);
1336 "sendDtmf called with invalid character '" + dtmfString.charAt(itr)+ "'");
H A DCommandsInterface.java1058 void sendDtmf(char c, Message result); method in interface:CommandsInterface
H A DRIL.java1178 public void sendDtmf(char c, Message result) { method in class:RIL
1190 radioProxy.sendDtmf(rr.mSerial, c + "");
1192 handleRadioProxyExceptionForRR(rr, "sendDtmf", e);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java661 sendDtmf(char c) { method in class:ImsPhone
664 "sendDtmf called with invalid character '" + c + "'");
667 mCT.sendDtmf(c, null);
H A DImsPhoneCallTracker.java1367 public void sendDtmf(char c, Message result) { method in class:ImsPhoneCallTracker
1368 if (DBG) log("sendDtmf");
1372 imscall.sendDtmf(c, result);
H A DImsPhoneCommandInterface.java202 public void sendDtmf(char c, Message result) { method in class:ImsPhoneCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1000 public void sendDtmf(char c, Message result) { method in class:SimulatedCommands
H A DSimulatedCommandsVerifier.java793 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.java1174 public void sendDtmf(char c) { method in class:PhoneMock

Completed in 4154 milliseconds