Home
last modified time | relevance | path

Searched refs:InsertDtmf (Results 1 – 16 of 16) sorted by relevance

/external/webrtc/pc/
Ddtmf_sender_unittest.cc86 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 …]
Ddtmf_sender.h39 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)
Ddtmf_sender.cc108 bool DtmfSender::InsertDtmf(const std::string& tones, in InsertDtmf() function in webrtc::DtmfSender
202 if (!provider_->InsertDtmf(code, duration_)) { in DoInsertDtmf()
Drtp_sender.cc451 bool AudioRtpSender::InsertDtmf(int code, int duration) { in InsertDtmf() function in webrtc::AudioRtpSender
461 return voice_media_channel()->InsertDtmf(ssrc_, code, duration); in InsertDtmf()
Drtp_sender.h261 bool InsertDtmf(int code, int duration) override;
Drtp_sender_receiver_unittest.cc1507 TEST_F(RtpSenderReceiverTest, InsertDtmf) { in TEST_F() argument
1517 dtmf_sender->InsertDtmf("012", expected_duration, 100); in TEST_F()
Dpeer_connection_integrationtest.cc1852 EXPECT_TRUE(dtmf_sender->InsertDtmf("1a", 100, 50)); in TestDtmfFromSenderToReceiver()
/external/webrtc/api/
Ddtmf_sender_interface.h86 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/
Ddtmf_sender.cc31 ->InsertDtmf(JavaToStdString(jni, tones), duration, inter_tone_gap); in JNI_DtmfSender_InsertDtmf()
/external/webrtc/sdk/objc/api/peerconnection/
DRTCDtmfSender.mm33 return _nativeDtmfSender->InsertDtmf(
/external/webrtc/media/engine/
Dwebrtc_voice_engine.h192 bool InsertDtmf(uint32_t ssrc, int event, int duration) override;
Dwebrtc_voice_engine_unittest.cc357 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()
Dwebrtc_voice_engine.cc2147 bool WebRtcVoiceMediaChannel::InsertDtmf(uint32_t ssrc, in InsertDtmf() function in cricket::WebRtcVoiceMediaChannel
/external/webrtc/media/base/
Dfake_media_engine.cc144 bool FakeVoiceMediaChannel::InsertDtmf(uint32_t ssrc, in InsertDtmf() function in cricket::FakeVoiceMediaChannel
Dmedia_channel.h834 virtual bool InsertDtmf(uint32_t ssrc, int event, int duration) = 0;
Dfake_media_engine.h341 bool InsertDtmf(uint32_t ssrc, int event_code, int duration) override;