/frameworks/opt/telephony/src/java/com/android/internal/telephony/d2d/ |
D | DtmfAdapter.java | 32 void sendDtmf(char digit); in sendDtmf() method
|
D | DtmfTransport.java | 314 mDtmfAdapter.sendDtmf(mMessageToSend[mCharToSend]); in handleDtmfSend()
|
/frameworks/opt/net/voip/src/jni/rtp/ |
D | AudioGroup.cpp | 107 void sendDtmf(int event); 230 void AudioStream::sendDtmf(int event) in sendDtmf() function in __anon5fc701100111::AudioStream 490 bool sendDtmf(int event); 661 bool AudioGroup::sendDtmf(int event) in sendDtmf() function in __anon5fc701100111::AudioGroup 752 stream->sendDtmf(event); in threadLoop() 1065 void sendDtmf(JNIEnv *env, jobject thiz, jint event) in sendDtmf() function 1068 if (group && !group->sendDtmf(event)) { in sendDtmf() 1077 {"nativeSendDtmf", "(I)V", (void *)sendDtmf},
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CallManagerTest.java | 127 CallManager.getInstance().sendDtmf('a'); in testSendDtmf() 128 verify(mPhone, times(0)).sendDtmf(eq('a')); in testSendDtmf() 133 CallManager.getInstance().sendDtmf('a'); in testSendDtmf() 134 verify(mPhone, times(1)).sendDtmf(eq('a')); in testSendDtmf()
|
D | SimulatedCommandsVerifier.java | 807 public void sendDtmf(char c, Message result) { in sendDtmf() method in SimulatedCommandsVerifier
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
D | ImsCallSessionImplBase.java | 322 public void sendDtmf(char c, Message result) { 323 executeMethodAsync(() -> ImsCallSessionImplBase.this.sendDtmf(c, result), "sendDtmf"); 697 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSessionImplBase
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsCallSession.aidl | 250 void sendDtmf(char c, in Message result); in sendDtmf() method
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RadioVoiceProxy.java | 505 public void sendDtmf(int serial, String s) throws RemoteException { in sendDtmf() method in RadioVoiceProxy 508 mVoiceProxy.sendDtmf(serial, s); in sendDtmf() 510 mRadioProxy.sendDtmf(serial, s); in sendDtmf()
|
D | PhoneInternalInterface.java | 560 void sendDtmf(char c); in sendDtmf() method
|
D | CallManager.java | 1061 public boolean sendDtmf(char c) { in sendDtmf() method in CallManager 1070 getActiveFgCall().getPhone().sendDtmf(c); in sendDtmf()
|
D | GsmCdmaConnection.java | 870 mOwner.mCi.sendDtmf(c, mHandler.obtainMessage(EVENT_DTMF_DONE)); in processPostDialChar()
|
D | CommandsInterface.java | 1128 void sendDtmf(char c, Message result); in sendDtmf() method
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
D | AudioGroup.java | 206 public void sendDtmf(int event) { in sendDtmf() method in AudioGroup
|
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/ |
D | TestMmTelFeature.java | 51 public void sendDtmf(char c, Message result) { in sendDtmf() method in TestMmTelFeature.TestImsCallSession
|
D | MmTelFeatureTests.java | 190 callSession.sendDtmf('0', resultMessage); in testSendDtmfMessageMessenger()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipAudioCall.java | 911 public void sendDtmf(int code) { 912 sendDtmf(code, null); 925 public void sendDtmf(int code, Message result) { 931 audioGroup.sendDtmf(code);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/d2d/ |
D | DtmfTransportTest.java | 106 verify(mDtmfAdapter, times(3)).sendDtmf(mDigitsCaptor.capture()); in testStartNegotiation() 396 verify(mDtmfAdapter, times(14)).sendDtmf(captor.capture()); in testSendSuccess()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsPhoneTest.java | 470 mImsPhoneUT.sendDtmf('-'); in testDtmf() 471 verify(mImsCT, times(0)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf() 474 mImsPhoneUT.sendDtmf('0'); in testDtmf() 475 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf() 479 mImsPhoneUT.sendDtmf('-'); in testDtmf() 480 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf() 483 mImsPhoneUT.sendDtmf('0'); in testDtmf() 484 verify(mImsCT, times(1)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf()
|
D | ImsPhoneConnectionTest.java | 266 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialWait() 290 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialPause()
|
D | ImsPhoneCallTrackerTest.java | 954 mCTUT.sendDtmf(PhoneNumberUtils.PAUSE, null); in testImsSendDtmf() 956 verify(mImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.PAUSE), (Message) isNull()); in testImsSendDtmf() 970 mCTUT.sendDtmf(PhoneNumberUtils.WAIT, null); in testImsSendDtmf() 972 verify(mSecondImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.WAIT), (Message) isNull()); in testImsSendDtmf()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsCallSession.java | 1092 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSession 1098 miSession.sendDtmf(c, result); in sendDtmf()
|
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/ |
D | ImsCallSessionImplBase.java | 342 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 | 197 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsPhoneCommandInterface
|
D | ImsPhone.java | 1058 sendDtmf(char c) { in sendDtmf() method in ImsPhone 1063 mCT.sendDtmf(c, null); in sendDtmf()
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsCall.java | 1733 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCall 1738 mSession.sendDtmf(c, result); in sendDtmf()
|