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

/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioGroup.java181 public void sendDtmf(int event) { method in class:AudioGroup
/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.cpp103 void sendDtmf(int event);
226 void AudioStream::sendDtmf(int event) function in class:__anon1582::AudioStream
479 bool sendDtmf(int event);
647 bool AudioGroup::sendDtmf(int event) function in class:__anon1582::AudioGroup
738 stream->sendDtmf(event);
1045 void sendDtmf(JNIEnv *env, jobject thiz, jint event) function in namespace:__anon1582
1048 if (group && !group->sendDtmf(event)) {
1057 {"nativeSendDtmf", "(I)V", (void *)sendDtmf},
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java276 public void sendDtmf(char c) { method in class:SipPhone
278 loge("sendDtmf called with invalid character '" + c + "'");
281 mForegroundCall.sendDtmf(c);
291 sendDtmf(c);
634 void sendDtmf(char c) { method in class:SipPhone.SipCall
635 if (SC_DBG) log("sendDtmf: c=" + c);
638 if (SC_DBG) log("sendDtmf: audioGroup == null, ignore c=" + c);
641 audioGroup.sendDtmf(convertDtmf(c));
H A DSipCommandInterface.java199 public void sendDtmf(char c, Message result) { method in class:SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallManager.java981 public boolean sendDtmf(char c) { method in class:CallManager
985 Rlog.d(LOG_TAG, " sendDtmf(" + c + ")");
990 getActiveFgCall().getPhone().sendDtmf(c);
995 Rlog.d(LOG_TAG, "End sendDtmf(" + c + ")");
1053 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
H A DPhoneProxy.java653 public void sendDtmf(char c) { method in class:PhoneProxy
654 mActivePhone.sendDtmf(c);
H A DPhone.java805 void sendDtmf(char c); method in interface:Phone
825 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
H A DCommandsInterface.java1001 void sendDtmf(char c, Message result); method in interface:CommandsInterface
H A DRIL.java1144 sendDtmf(char c, Message result) { method in class:RIL
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java740 public void sendDtmf(char c) { method in class:CDMAPhone
743 "sendDtmf called with invalid character '" + c + "'");
746 mCi.sendDtmf(c, null);
772 "sendDtmf called with invalid character '" + dtmfString.charAt(itr)+ "'");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java778 sendDtmf(char c) { method in class:GSMPhone
781 "sendDtmf called with invalid character '" + c + "'");
784 mCi.sendDtmf(c, null);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java334 public void sendDtmf(char c, Message result) { method in class:UsimDataDownloadCommands
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java952 public void sendDtmf(char c, Message result) { method in class:SimulatedCommands

Completed in 242 milliseconds