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

/frameworks/base/voip/java/android/net/rtp/
H A DAudioGroup.java180 public void sendDtmf(int event) { method in class:AudioGroup
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java896 public void sendDtmf(int code) { method in class:SipAudioCall
897 sendDtmf(code, null);
910 public void sendDtmf(int code, Message result) { method in class:SipAudioCall
916 audioGroup.sendDtmf(code);
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp103 void sendDtmf(int event);
226 void AudioStream::sendDtmf(int event) function in class:__anon1172::AudioStream
479 bool sendDtmf(int event);
647 bool AudioGroup::sendDtmf(int event) function in class:__anon1172::AudioGroup
738 stream->sendDtmf(event);
1039 void sendDtmf(JNIEnv *env, jobject thiz, jint event) function in namespace:__anon1172
1042 if (group && !group->sendDtmf(event)) {
1051 {"nativeSendDtmf", "(I)V", (void *)sendDtmf},
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java243 public void sendDtmf(char c) { method in class:SipPhone
246 "sendDtmf called with invalid character '" + c + "'");
249 foregroundCall.sendDtmf(c);
259 sendDtmf(c);
534 void sendDtmf(char c) { method in class:SipPhone.SipCall
537 audioGroup.sendDtmf(convertDtmf(c));
H A DSipCommandInterface.java159 public void sendDtmf(char c, Message result) { method in class:SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallManager.java961 public boolean sendDtmf(char c) { method in class:CallManager
965 Log.d(LOG_TAG, " sendDtmf(" + c + ")");
970 getActiveFgCall().getPhone().sendDtmf(c);
975 Log.d(LOG_TAG, "End sendDtmf(" + c + ")");
1033 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
H A DPhoneProxy.java554 public void sendDtmf(char c) { method in class:PhoneProxy
555 mActivePhone.sendDtmf(c);
H A DPhone.java789 void sendDtmf(char c); method in interface:Phone
809 * The difference between sendDtmf and sendBurstDtmf is sendDtmf only sends one character,
H A DRIL.java1140 sendDtmf(char c, Message result) { method in class:RIL
H A DCommandsInterface.java965 void sendDtmf(char c, Message result); method in interface:CommandsInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java653 public void sendDtmf(char c) { method in class:CDMAPhone
656 "sendDtmf called with invalid character '" + c + "'");
659 mCM.sendDtmf(c, null);
682 "sendDtmf called with invalid character '" + dtmfString.charAt(itr)+ "'");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java751 sendDtmf(char c) { method in class:GSMPhone
754 "sendDtmf called with invalid character '" + c + "'");
757 mCM.sendDtmf(c, null);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java905 public void sendDtmf(char c, Message result) { method in class:SimulatedCommands
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java333 public void sendDtmf(char c, Message result) { method in class:UsimDataDownloadCommands

Completed in 3400 milliseconds