/external/webrtc/talk/app/webrtc/ |
D | dtmfsender_unittest.cc | 97 bool InsertDtmf(const std::string& track_label, in InsertDtmf() function in FakeDtmfProvider 245 TEST_F(DtmfSenderTest, InsertDtmf) { in TEST_F() argument 249 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() 263 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap)); in TEST_F() 269 EXPECT_TRUE(dtmf_->InsertDtmf(tones2, duration, inter_tone_gap)); in TEST_F() 285 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() 299 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() 314 EXPECT_TRUE(dtmf_->InsertDtmf(tones1, duration, inter_tone_gap)); in TEST_F() 318 EXPECT_TRUE(dtmf_->InsertDtmf(tones2, duration, inter_tone_gap)); in TEST_F() 334 EXPECT_TRUE(dtmf_->InsertDtmf(tones, duration, inter_tone_gap)); in TEST_F() [all …]
|
D | dtmfsender.h | 60 virtual bool InsertDtmf(const std::string& track_id, 84 bool InsertDtmf(const std::string& tones, 127 PROXY_METHOD3(bool, InsertDtmf, const std::string&, int, int)
|
D | dtmfsender.cc | 133 bool DtmfSender::InsertDtmf(const std::string& tones, int duration, in InsertDtmf() function in webrtc::DtmfSender 227 if (!provider_->InsertDtmf(track_->id(), code, duration_)) { in DoInsertDtmf()
|
D | dtmfsenderinterface.h | 80 virtual bool InsertDtmf(const std::string& tones, int duration,
|
D | webrtcsession.h | 271 virtual bool InsertDtmf(const std::string& track_id,
|
D | webrtcsession.cc | 1410 bool WebRtcSession::InsertDtmf(const std::string& track_id, in InsertDtmf() function in webrtc::WebRtcSession 1423 if (!voice_channel_->InsertDtmf(send_ssrc, code, duration)) { in InsertDtmf()
|
D | webrtcsession_unittest.cc | 3486 TEST_F(WebRtcSessionTest, InsertDtmf) { in TEST_F() argument 3496 session_->InsertDtmf(kAudioTrack1, 0, expected_duration); in TEST_F() 3497 session_->InsertDtmf(kAudioTrack1, 1, expected_duration); in TEST_F() 3498 session_->InsertDtmf(kAudioTrack1, 2, expected_duration); in TEST_F()
|
D | peerconnection_unittest.cc | 523 EXPECT_TRUE(dtmf_sender->InsertDtmf("1a", 100, 50)); in VerifyDtmf()
|
/external/webrtc/talk/media/webrtc/ |
D | webrtcvoiceengine.h | 190 bool InsertDtmf(uint32_t ssrc, int event, int duration) override;
|
D | webrtcvoiceengine_unittest.cc | 155 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 1, 111)); in TestInsertDtmf() 162 EXPECT_FALSE(channel_->InsertDtmf(ssrc, 2, 123)); in TestInsertDtmf() 168 EXPECT_FALSE(channel_->InsertDtmf(-1, 1, 111)); in TestInsertDtmf() 174 EXPECT_TRUE(channel_->InsertDtmf(ssrc, 2, 123)); in TestInsertDtmf()
|
D | webrtcvoiceengine.cc | 2141 bool WebRtcVoiceMediaChannel::InsertDtmf(uint32_t ssrc, int event, in InsertDtmf() function in cricket::WebRtcVoiceMediaChannel
|
/external/webrtc/talk/session/media/ |
D | channel.h | 376 bool InsertDtmf(uint32_t ssrc, int event_code, int duration);
|
D | channel_unittest.cc | 2120 EXPECT_TRUE(channel1_->InsertDtmf(1, 3, 100)); in TEST_F() 2121 EXPECT_TRUE(channel1_->InsertDtmf(2, 5, 110)); in TEST_F() 2122 EXPECT_TRUE(channel1_->InsertDtmf(3, 7, 120)); in TEST_F()
|
D | channel.cc | 1388 bool VoiceChannel::InsertDtmf(uint32_t ssrc, in InsertDtmf() function in cricket::VoiceChannel 1603 return media_channel()->InsertDtmf(ssrc, event, duration); in InsertDtmf_w()
|
/external/webrtc/talk/media/base/ |
D | fakemediaengine.h | 321 virtual bool InsertDtmf(uint32_t ssrc, in InsertDtmf() function
|
D | mediachannel.h | 1034 virtual bool InsertDtmf(uint32_t ssrc, int event, int duration) = 0;
|