/external/webrtc/pc/ |
D | dtmf_sender_unittest.cc | 86 bool InsertDtmf(int code, int duration) override { in InsertDtmf() function in FakeDtmfProvider 231 TEST_F(DtmfSenderTest, InsertDtmf) { in TEST_F() argument 235 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() 249 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap)); in TEST_F() 256 EXPECT_TRUE(dtmf_->InsertDtmf(tones2, duration, inter_tone_gap)); in TEST_F() 272 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() 287 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() 303 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap)); in TEST_F() 308 EXPECT_TRUE(dtmf_->InsertDtmf(tones2, duration, inter_tone_gap)); in TEST_F() 324 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() [all …]
|
D | dtmf_sender.h | 39 virtual bool InsertDtmf(int code, int duration) = 0; 57 bool InsertDtmf(const std::string& tones, 102 PROXY_METHOD4(bool, InsertDtmf, const std::string&, int, int, int)
|
D | dtmf_sender.cc | 108 bool DtmfSender::InsertDtmf(const std::string& tones, in InsertDtmf() function in webrtc::DtmfSender 202 if (!provider_->InsertDtmf(code, duration_)) { in DoInsertDtmf()
|
D | rtp_sender.cc | 451 bool AudioRtpSender::InsertDtmf(int code, int duration) { in InsertDtmf() function in webrtc::AudioRtpSender 461 return voice_media_channel()->InsertDtmf(ssrc_, code, duration); in InsertDtmf()
|
D | rtp_sender.h | 261 bool InsertDtmf(int code, int duration) override;
|
D | rtp_sender_receiver_unittest.cc | 1507 TEST_F(RtpSenderReceiverTest, InsertDtmf) { in TEST_F() argument 1517 dtmf_sender->InsertDtmf("012", expected_duration, 100); in TEST_F()
|
D | peer_connection_integrationtest.cc | 1852 EXPECT_TRUE(dtmf_sender->InsertDtmf("1a", 100, 50)); in TestDtmfFromSenderToReceiver()
|
/external/webrtc/api/ |
D | dtmf_sender_interface.h | 86 virtual bool InsertDtmf(const std::string& tones, in InsertDtmf() function 89 return InsertDtmf(tones, duration, inter_tone_gap, in InsertDtmf() 92 virtual bool InsertDtmf(const std::string& tones, in InsertDtmf() function 98 return InsertDtmf(tones, duration, inter_tone_gap); in InsertDtmf()
|
/external/webrtc/sdk/android/src/jni/pc/ |
D | dtmf_sender.cc | 31 ->InsertDtmf(JavaToStdString(jni, tones), duration, inter_tone_gap); in JNI_DtmfSender_InsertDtmf()
|
/external/webrtc/sdk/objc/api/peerconnection/ |
D | RTCDtmfSender.mm | 33 return _nativeDtmfSender->InsertDtmf(
|
/external/webrtc/media/engine/ |
D | webrtc_voice_engine.h | 192 bool InsertDtmf(uint32_t ssrc, int event, int duration) override;
|
D | webrtc_voice_engine_unittest.cc | 357 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 1, 111)); in TestInsertDtmf() 364 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 2, 123)); in TestInsertDtmf() 370 EXPECT_FALSE(channel_->InsertDtmf(-1, 1, 111)); in TestInsertDtmf() 376 EXPECT_TRUE(channel_->InsertDtmf(ssrc, 2, 123)); in TestInsertDtmf()
|
D | webrtc_voice_engine.cc | 2147 bool WebRtcVoiceMediaChannel::InsertDtmf(uint32_t ssrc, in InsertDtmf() function in cricket::WebRtcVoiceMediaChannel
|
/external/webrtc/media/base/ |
D | fake_media_engine.cc | 144 bool FakeVoiceMediaChannel::InsertDtmf(uint32_t ssrc, in InsertDtmf() function in cricket::FakeVoiceMediaChannel
|
D | media_channel.h | 834 virtual bool InsertDtmf(uint32_t ssrc, int event, int duration) = 0;
|
D | fake_media_engine.h | 341 bool InsertDtmf(uint32_t ssrc, int event_code, int duration) override;
|