/frameworks/opt/net/voip/src/jni/rtp/ |
D | AudioGroup.cpp | 103 void sendDtmf(int event); 226 void AudioStream::sendDtmf(int event) in sendDtmf() function in __anon5fc701100111::AudioStream 488 bool sendDtmf(int event); 659 bool AudioGroup::sendDtmf(int event) in sendDtmf() function in __anon5fc701100111::AudioGroup 750 stream->sendDtmf(event); in threadLoop() 1058 void sendDtmf(JNIEnv *env, jobject thiz, jint event) in sendDtmf() function 1061 if (group && !group->sendDtmf(event)) { in sendDtmf() 1070 {"nativeSendDtmf", "(I)V", (void *)sendDtmf},
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
D | ImsCallSessionImplBase.java | 239 public void sendDtmf(char c, Message result) { 240 ImsCallSessionImplBase.this.sendDtmf(c, result); 568 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSessionImplBase
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CallManagerTest.java | 129 CallManager.getInstance().sendDtmf('a'); in testSendDtmf() 130 verify(mPhone, times(0)).sendDtmf(eq('a')); in testSendDtmf() 135 CallManager.getInstance().sendDtmf('a'); in testSendDtmf() 136 verify(mPhone, times(1)).sendDtmf(eq('a')); in testSendDtmf()
|
D | SimulatedCommandsVerifier.java | 817 public void sendDtmf(char c, Message result) { in sendDtmf() method in SimulatedCommandsVerifier
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsPhoneTest.java | 434 mImsPhoneUT.sendDtmf('-'); in testDtmf() 435 verify(mImsCT, times(0)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf() 438 mImsPhoneUT.sendDtmf('0'); in testDtmf() 439 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf() 443 mImsPhoneUT.sendDtmf('-'); in testDtmf() 444 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf() 447 mImsPhoneUT.sendDtmf('0'); in testDtmf() 448 verify(mImsCT, times(1)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf()
|
D | ImsPhoneConnectionTest.java | 225 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialWait() 248 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialPause()
|
D | ImsPhoneCallTrackerTest.java | 647 mCTUT.sendDtmf(PhoneNumberUtils.PAUSE, null); in testImsSendDtmf() 649 verify(mImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.PAUSE), (Message) isNull()); in testImsSendDtmf() 663 mCTUT.sendDtmf(PhoneNumberUtils.WAIT, null); in testImsSendDtmf() 665 verify(mSecondImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.WAIT), (Message) isNull()); in testImsSendDtmf()
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsCallSession.aidl | 246 void sendDtmf(char c, in Message result); in sendDtmf() method
|
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/ |
D | TestMmTelFeature.java | 42 public void sendDtmf(char c, Message result) { in sendDtmf() method in TestMmTelFeature.TestImsCallSession
|
D | MmTelFeatureTests.java | 170 callSession.sendDtmf('0', resultMessage); in testSendDtmfMessageMessenger()
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
D | AudioGroup.java | 198 public void sendDtmf(int event) { in sendDtmf() method in AudioGroup
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipAudioCall.java | 909 public void sendDtmf(int code) { 910 sendDtmf(code, null); 923 public void sendDtmf(int code, Message result) { 929 audioGroup.sendDtmf(code);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipPhone.java | 296 public void sendDtmf(char c) { in sendDtmf() method in SipPhone 301 mForegroundCall.sendDtmf(c); in sendDtmf() 311 sendDtmf(c); in startDtmf() 671 void sendDtmf(char c) { in sendDtmf() method in SipPhone.SipCall 678 audioGroup.sendDtmf(convertDtmf(c)); in sendDtmf()
|
D | SipCommandInterface.java | 222 public void sendDtmf(char c, Message result) { in sendDtmf() method in SipCommandInterface
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsCallSession.java | 997 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSession 1003 miSession.sendDtmf(c, result); in sendDtmf()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | PhoneInternalInterface.java | 491 void sendDtmf(char c); in sendDtmf() method
|
D | CallManager.java | 1069 public boolean sendDtmf(char c) { in sendDtmf() method in CallManager 1078 getActiveFgCall().getPhone().sendDtmf(c); in sendDtmf()
|
D | GsmCdmaConnection.java | 833 mOwner.mCi.sendDtmf(c, mHandler.obtainMessage(EVENT_DTMF_DONE)); in processPostDialChar()
|
D | CommandsInterface.java | 1146 void sendDtmf(char c, Message result); in sendDtmf() method
|
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/ |
D | ImsCallSessionImplBase.java | 338 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSessionImplBase
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 221 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsPhoneCommandInterface
|
D | ImsPhoneConnection.java | 593 mOwner.sendDtmf(c, dtmfComplete); in processPostDialChar()
|
D | ImsPhone.java | 966 sendDtmf(char c) { in sendDtmf() method in ImsPhone 971 mCT.sendDtmf(c, null); in sendDtmf()
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsCall.java | 1673 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCall 1678 mSession.sendDtmf(c, result); in sendDtmf()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadCommands.java.broken | 334 public void sendDtmf(char c, Message result) {
|