/aosp12/frameworks/opt/net/voip/src/jni/rtp/ |
H A D | AudioGroup.cpp | 107 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 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()
|
/aosp12/frameworks/base/telephony/java/android/telephony/ims/stub/ |
H A D | ImsCallSessionImplBase.java | 244 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 D | DtmfAdapter.java | 32 void sendDtmf(char digit); in sendDtmf() method
|
H A D | DtmfTransport.java | 314 mDtmfAdapter.sendDtmf(mMessageToSend[mCharToSend]); in handleDtmfSend()
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
H A D | ImsPhoneTest.java | 439 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 D | ImsPhoneConnectionTest.java | 250 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialWait() 273 }).when(mImsCT).sendDtmf(anyChar(), (Message) any()); in testPostDialPause()
|
H A D | ImsPhoneCallTrackerTest.java | 733 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 D | HeadsetSystemInterface.java | 207 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 D | SipPhone.java | 300 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 D | SipCommandInterface.java | 225 public void sendDtmf(char c, Message result) { in sendDtmf() method in SipCommandInterface
|
/aosp12/frameworks/opt/net/voip/src/java/android/net/sip/ |
H A 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);
|
/aosp12/frameworks/base/telephony/java/com/android/ims/internal/ |
H A D | IImsCallSession.aidl | 248 void sendDtmf(char c, in Message result); in sendDtmf() method
|
/aosp12/frameworks/opt/net/voip/src/java/android/net/rtp/ |
H A D | AudioGroup.java | 206 public void sendDtmf(int event) { in sendDtmf() method in AudioGroup
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/ |
H A D | TestMmTelFeature.java | 47 public void sendDtmf(char c, Message result) { in sendDtmf() method in TestMmTelFeature.TestImsCallSession
|
H A D | MmTelFeatureTests.java | 174 callSession.sendDtmf('0', resultMessage); in testSendDtmfMessageMessenger()
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/d2d/ |
H A D | DtmfTransportTest.java | 101 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 D | radio_hidl_hal_voice.cpp | 424 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 D | ImsCallSession.java | 1041 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 D | ImsCallSessionImplBase.java | 342 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsCallSessionImplBase
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | PhoneInternalInterface.java | 570 void sendDtmf(char c); in sendDtmf() method
|
H A D | CallManager.java | 1068 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 D | NativeInterface.java | 234 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 D | ImsPhoneCommandInterface.java | 224 public void sendDtmf(char c, Message result) { in sendDtmf() method in ImsPhoneCommandInterface
|
/aosp12/hardware/interfaces/radio/1.2/default/ |
H A D | Radio.cpp | 226 Return<void> Radio::sendDtmf(int32_t /* serial */, const hidl_string& /* s */) { in sendDtmf() function in android::hardware::radio::V1_2::implementation::Radio
|