/frameworks/opt/net/voip/src/jni/rtp/ |
D | AudioGroup.cpp | 105 void sendDtmf(int event); 228 void AudioStream::sendDtmf(int event) in sendDtmf() function in __anon74d586cf0111::AudioStream 481 bool sendDtmf(int event); 652 bool AudioGroup::sendDtmf(int event) in sendDtmf() function in __anon74d586cf0111::AudioGroup 743 stream->sendDtmf(event); in threadLoop() 1051 void sendDtmf(JNIEnv *env, jobject thiz, jint event) in sendDtmf() function 1054 if (group && !group->sendDtmf(event)) { in sendDtmf() 1063 {"nativeSendDtmf", "(I)V", (void *)sendDtmf},
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsPhoneTest.java | 401 mImsPhoneUT.sendDtmf('-'); in testDtmf() 402 verify(mImsCT, times(0)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf() 405 mImsPhoneUT.sendDtmf('0'); in testDtmf() 406 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf() 410 mImsPhoneUT.sendDtmf('-'); in testDtmf() 411 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf() 414 mImsPhoneUT.sendDtmf('0'); in testDtmf() 415 verify(mImsCT, times(1)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf()
|
D | ImsPhoneCallTrackerTest.java | 489 mCTUT.sendDtmf(PhoneNumberUtils.PAUSE, null); in testImsSendDtmf() 491 verify(mImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.PAUSE), (Message) isNull()); in testImsSendDtmf() 506 mCTUT.sendDtmf(PhoneNumberUtils.WAIT, null); in testImsSendDtmf() 508 verify(mSecondImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.WAIT), (Message) isNull()); in testImsSendDtmf()
|
D | ImsPhoneConnectionTest.java | 202 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialWait() 225 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialPause()
|
/frameworks/base/core/java/android/bluetooth/ |
D | IBluetoothHeadsetPhone.aidl | 28 boolean sendDtmf(int dtmf); in sendDtmf() method
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CallManagerTest.java | 169 CallManager.getInstance().sendDtmf('a'); in testSendDtmf() 170 verify(mPhone, times(0)).sendDtmf(eq('a')); in testSendDtmf() 175 CallManager.getInstance().sendDtmf('a'); in testSendDtmf() 176 verify(mPhone, times(1)).sendDtmf(eq('a')); in testSendDtmf()
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsCallSession.aidl | 223 void sendDtmf(char c, in Message result); in sendDtmf() method
|
D | ImsCallSession.java | 910 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSession 916 miSession.sendDtmf(c, result); in sendDtmf()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipAudioCall.java | 903 public void sendDtmf(int code) { 904 sendDtmf(code, null); 917 public void sendDtmf(int code, Message result) { 923 audioGroup.sendDtmf(code);
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
D | AudioGroup.java | 183 public void sendDtmf(int event) { in sendDtmf() method in AudioGroup
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipPhone.java | 288 public void sendDtmf(char c) { in sendDtmf() method in SipPhone 293 mForegroundCall.sendDtmf(c); in sendDtmf() 303 sendDtmf(c); in startDtmf() 657 void sendDtmf(char c) { in sendDtmf() method in SipPhone.SipCall 664 audioGroup.sendDtmf(convertDtmf(c)); in sendDtmf()
|
D | SipCommandInterface.java | 205 public void sendDtmf(char c, Message result) { in sendDtmf() method in SipCommandInterface
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
D | ImsCallSessionImplBase.java | 300 public void sendDtmf(char c, Message result) throws RemoteException { in sendDtmf() method in ImsCallSessionImplBase
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | PhoneInternalInterface.java | 466 void sendDtmf(char c); in sendDtmf() method
|
D | CallManager.java | 1212 public boolean sendDtmf(char c) { in sendDtmf() method in CallManager 1221 getActiveFgCall().getPhone().sendDtmf(c); in sendDtmf()
|
D | GsmCdmaConnection.java | 751 mOwner.mCi.sendDtmf(c, mHandler.obtainMessage(EVENT_DTMF_DONE)); in processPostDialChar()
|
D | CommandsInterface.java | 1060 void sendDtmf(char c, Message result); in sendDtmf() method
|
D | GsmCdmaPhone.java | 1316 public void sendDtmf(char c) { in sendDtmf() method in GsmCdmaPhone 1321 mCi.sendDtmf(c, null); in sendDtmf()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 204 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsPhoneCommandInterface
|
D | ImsPhone.java | 675 sendDtmf(char c) { in sendDtmf() method in ImsPhone 681 mCT.sendDtmf(c, null); in sendDtmf()
|
D | ImsPhoneConnection.java | 478 mOwner.sendDtmf(c, mHandler.obtainMessage(EVENT_DTMF_DONE)); in processPostDialChar()
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsCall.java | 1536 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCall 1541 mSession.sendDtmf(c, result); in sendDtmf()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
D | PhoneMock.java | 1170 public void sendDtmf(char c) { in sendDtmf() method in PhoneMock
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
D | SimulatedCommandsVerifier.java | 795 public void sendDtmf(char c, Message result) { in sendDtmf() method in SimulatedCommandsVerifier
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadCommands.java.broken | 334 public void sendDtmf(char c, Message result) {
|