Home
last modified time | relevance | path

Searched refs:sendDtmf (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/d2d/
DDtmfAdapter.java32 void sendDtmf(char digit); in sendDtmf() method
DDtmfTransport.java314 mDtmfAdapter.sendDtmf(mMessageToSend[mCharToSend]); in handleDtmfSend()
/frameworks/opt/net/voip/src/jni/rtp/
DAudioGroup.cpp107 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/
DCallManagerTest.java127 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()
DSimulatedCommandsVerifier.java807 public void sendDtmf(char c, Message result) { in sendDtmf() method in SimulatedCommandsVerifier
/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsCallSessionImplBase.java322 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/
DIImsCallSession.aidl250 void sendDtmf(char c, in Message result); in sendDtmf() method
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioVoiceProxy.java505 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()
DPhoneInternalInterface.java560 void sendDtmf(char c); in sendDtmf() method
DCallManager.java1061 public boolean sendDtmf(char c) { in sendDtmf() method in CallManager
1070 getActiveFgCall().getPhone().sendDtmf(c); in sendDtmf()
DGsmCdmaConnection.java870 mOwner.mCi.sendDtmf(c, mHandler.obtainMessage(EVENT_DTMF_DONE)); in processPostDialChar()
DCommandsInterface.java1128 void sendDtmf(char c, Message result); in sendDtmf() method
/frameworks/opt/net/voip/src/java/android/net/rtp/
DAudioGroup.java206 public void sendDtmf(int event) { in sendDtmf() method in AudioGroup
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
DTestMmTelFeature.java51 public void sendDtmf(char c, Message result) { in sendDtmf() method in TestMmTelFeature.TestImsCallSession
DMmTelFeatureTests.java190 callSession.sendDtmf('0', resultMessage); in testSendDtmfMessageMessenger()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipAudioCall.java911 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/
DDtmfTransportTest.java106 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/
DImsPhoneTest.java470 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()
DImsPhoneConnectionTest.java266 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialWait()
290 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialPause()
DImsPhoneCallTrackerTest.java954 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/
DImsCallSession.java1092 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/
DImsCallSessionImplBase.java342 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSessionImplBase
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java197 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsPhoneCommandInterface
DImsPhone.java1058 sendDtmf(char c) { in sendDtmf() method in ImsPhone
1063 mCT.sendDtmf(c, null); in sendDtmf()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java1733 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCall
1738 mSession.sendDtmf(c, result); in sendDtmf()

12