Home
last modified time | relevance | path

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

123

/aosp12/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp107 void sendDtmf(int event);
230 void AudioStream::sendDtmf(int event) in sendDtmf() function in __anonfc57d5fc0110::AudioStream
492 bool sendDtmf(int event);
663 bool AudioGroup::sendDtmf(int event) in sendDtmf() function in __anonfc57d5fc0110::AudioGroup
754 stream->sendDtmf(event); in threadLoop()
1068 void sendDtmf(JNIEnv *env, jobject thiz, jint event) in sendDtmf() function
1071 if (group && !group->sendDtmf(event)) { in sendDtmf()
1080 {"nativeSendDtmf", "(I)V", (void *)sendDtmf},
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCallManagerTest.java129 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()
/aosp12/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsCallSessionImplBase.java244 public void sendDtmf(char c, Message result) {
245 ImsCallSessionImplBase.this.sendDtmf(c, result);
579 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSessionImplBase
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/d2d/
H A DDtmfAdapter.java32 void sendDtmf(char digit); in sendDtmf() method
H A DDtmfTransport.java314 mDtmfAdapter.sendDtmf(mMessageToSend[mCharToSend]); in handleDtmfSend()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneTest.java439 mImsPhoneUT.sendDtmf('-'); in testDtmf()
440 verify(mImsCT, times(0)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf()
443 mImsPhoneUT.sendDtmf('0'); in testDtmf()
444 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf()
448 mImsPhoneUT.sendDtmf('-'); in testDtmf()
449 verify(mImsCT, times(0)).sendDtmf(eq('0'), nullable(Message.class)); in testDtmf()
452 mImsPhoneUT.sendDtmf('0'); in testDtmf()
453 verify(mImsCT, times(1)).sendDtmf(anyChar(), nullable(Message.class)); in testDtmf()
H A DImsPhoneConnectionTest.java250 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialWait()
273 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialPause()
H A DImsPhoneCallTrackerTest.java733 mCTUT.sendDtmf(PhoneNumberUtils.PAUSE, null); in testImsSendDtmf()
735 verify(mImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.PAUSE), (Message) isNull()); in testImsSendDtmf()
749 mCTUT.sendDtmf(PhoneNumberUtils.WAIT, null); in testImsSendDtmf()
751 verify(mSecondImsCall, times(1)).sendDtmf(eq(PhoneNumberUtils.WAIT), (Message) isNull()); in testImsSendDtmf()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetSystemInterface.java207 public boolean sendDtmf(int dtmf, BluetoothDevice device) { in sendDtmf() method in HeadsetSystemInterface
214 return bluetoothInCallService.sendDtmf(dtmf); in sendDtmf()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java300 public void sendDtmf(char c) { in sendDtmf() method in SipPhone
305 mForegroundCall.sendDtmf(c); in sendDtmf()
315 sendDtmf(c); in startDtmf()
675 void sendDtmf(char c) { in sendDtmf() method in SipPhone.SipCall
682 audioGroup.sendDtmf(convertDtmf(c)); in sendDtmf()
H A DSipCommandInterface.java225 public void sendDtmf(char c, Message result) { in sendDtmf() method in SipCommandInterface
/aosp12/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java911 public void sendDtmf(int code) {
912 sendDtmf(code, null);
925 public void sendDtmf(int code, Message result) {
931 audioGroup.sendDtmf(code);
/aosp12/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsCallSession.aidl248 void sendDtmf(char c, in Message result); in sendDtmf() method
/aosp12/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioGroup.java206 public void sendDtmf(int event) { in sendDtmf() method in AudioGroup
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
H A DTestMmTelFeature.java47 public void sendDtmf(char c, Message result) { in sendDtmf() method in TestMmTelFeature.TestImsCallSession
H A DMmTelFeatureTests.java174 callSession.sendDtmf('0', resultMessage); in testSendDtmfMessageMessenger()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/d2d/
H A DDtmfTransportTest.java101 verify(mDtmfAdapter, times(3)).sendDtmf(mDigitsCaptor.capture()); in testStartNegotiation()
391 verify(mDtmfAdapter, times(14)).sendDtmf(captor.capture()); in testSendSuccess()
/aosp12/hardware/interfaces/radio/1.0/vts/functional/
H A Dradio_hidl_hal_voice.cpp424 TEST_P(RadioHidlTest, sendDtmf) { in TEST_P() argument
428 radio->sendDtmf(serial, "1"); in TEST_P()
/aosp12/frameworks/base/telephony/java/android/telephony/ims/
H A DImsCallSession.java1041 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSession
1047 miSession.sendDtmf(c, result); in sendDtmf()
/aosp12/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
H A DImsCallSessionImplBase.java342 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSessionImplBase
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneInternalInterface.java570 void sendDtmf(char c); in sendDtmf() method
H A DCallManager.java1068 public boolean sendDtmf(char c) { in sendDtmf() method in CallManager
1077 getActiveFgCall().getPhone().sendDtmf(c); in sendDtmf()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DNativeInterface.java234 public boolean sendDtmf(byte[] address, byte code) { in sendDtmf() method in NativeInterface
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java224 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsPhoneCommandInterface
/aosp12/hardware/interfaces/radio/1.2/default/
H A DRadio.cpp226 Return<void> Radio::sendDtmf(int32_t /* serial */, const hidl_string& /* s */) { in sendDtmf() function in android::hardware::radio::V1_2::implementation::Radio

123