Searched refs:CanInsertDtmf (Results 1 - 15 of 15) sorted by relevance

/external/webrtc/talk/app/webrtc/
H A Ddtmfsender.h56 virtual bool CanInsertDtmf(const std::string& track_id) = 0;
83 bool CanInsertDtmf() override;
126 PROXY_METHOD0(bool, CanInsertDtmf)
H A Ddtmfsenderinterface.h63 virtual bool CanInsertDtmf() = 0;
H A Ddtmfsender.cc125 bool DtmfSender::CanInsertDtmf() { function in class:webrtc::DtmfSender
130 return provider_->CanInsertDtmf(track_->id());
147 if (!CanInsertDtmf()) {
H A Ddtmfsender_unittest.cc93 bool CanInsertDtmf(const std::string& track_label) override {
239 TEST_F(DtmfSenderTest, CanInsertDtmf) {
240 EXPECT_TRUE(dtmf_->CanInsertDtmf());
242 EXPECT_FALSE(dtmf_->CanInsertDtmf());
H A Dwebrtcsession.h270 virtual bool CanInsertDtmf(const std::string& track_id);
H A Dwebrtcsession.cc1392 bool WebRtcSession::CanInsertDtmf(const std::string& track_id) { function in class:webrtc::WebRtcSession
1395 LOG(LS_ERROR) << "CanInsertDtmf: No audio channel exists.";
1404 LOG(LS_ERROR) << "CanInsertDtmf: Track does not exist: " << track_id;
1407 return voice_channel_->CanInsertDtmf();
H A Dwebrtcsession_unittest.cc1139 EXPECT_FALSE(session_->CanInsertDtmf(""));
1140 EXPECT_EQ(can, session_->CanInsertDtmf(kAudioTrack1));
3482 TEST_F(WebRtcSessionTest, CanInsertDtmf) {
H A Dpeerconnection_unittest.cc522 EXPECT_TRUE(dtmf_sender->CanInsertDtmf());
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvoiceengine.h189 bool CanInsertDtmf() override;
H A Dwebrtcvoiceengine_unittest.cc154 EXPECT_FALSE(channel_->CanInsertDtmf());
158 EXPECT_TRUE(channel_->CanInsertDtmf());
775 EXPECT_FALSE(channel_->CanInsertDtmf());
1616 EXPECT_TRUE(channel_->CanInsertDtmf());
1662 EXPECT_TRUE(channel_->CanInsertDtmf());
1695 EXPECT_TRUE(channel_->CanInsertDtmf());
1759 EXPECT_TRUE(channel_->CanInsertDtmf());
H A Dwebrtcvoiceengine.cc2137 bool WebRtcVoiceMediaChannel::CanInsertDtmf() { function in class:cricket::WebRtcVoiceMediaChannel
/external/webrtc/talk/session/media/
H A Dchannel.h370 bool CanInsertDtmf();
H A Dchannel.cc1383 bool VoiceChannel::CanInsertDtmf() { function in class:cricket::VoiceChannel
1384 return InvokeOnWorker(Bind(&VoiceMediaChannel::CanInsertDtmf,
/external/webrtc/talk/media/base/
H A Dfakemediaengine.h311 virtual bool CanInsertDtmf() { function in class:cricket::FakeVoiceMediaChannel
H A Dmediachannel.h1029 virtual bool CanInsertDtmf() = 0;

Completed in 2443 milliseconds