Home
last modified time | relevance | path

Searched refs:BaseChannel (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/talk/session/media/
Dchannel.cc169 BaseChannel::BaseChannel(rtc::Thread* thread, in BaseChannel() function in cricket::BaseChannel
196 BaseChannel::~BaseChannel() { in ~BaseChannel()
221 bool BaseChannel::Init() { in Init()
240 void BaseChannel::Deinit() { in Deinit()
244 bool BaseChannel::SetTransport(const std::string& transport_name) { in SetTransport()
246 Bind(&BaseChannel::SetTransport_w, this, transport_name)); in SetTransport()
249 bool BaseChannel::SetTransport_w(const std::string& transport_name) { in SetTransport_w()
298 void BaseChannel::set_transport_channel(TransportChannel* new_tc) { in set_transport_channel()
329 void BaseChannel::set_rtcp_transport_channel(TransportChannel* new_tc, in set_rtcp_transport_channel()
366 void BaseChannel::ConnectToTransportChannel(TransportChannel* tc) { in ConnectToTransportChannel()
[all …]
Dchannel.h80 class BaseChannel
85 BaseChannel(rtc::Thread* thread,
90 virtual ~BaseChannel();
161 sigslot::signal2<BaseChannel*, bool> SignalDtlsSetupFailure;
166 sigslot::signal1<BaseChannel*> SignalFirstPacketReceived;
340 class VoiceChannel : public BaseChannel {
360 return static_cast<VoiceMediaChannel*>(BaseChannel::media_channel()); in media_channel()
443 class VideoChannel : public BaseChannel {
455 return static_cast<VideoMediaChannel*>(BaseChannel::media_channel()); in media_channel()
531 class DataChannel : public BaseChannel {
[all …]
/external/webrtc/talk/app/webrtc/
Dwebrtcsession.h211 bool GetSslRole(const cricket::BaseChannel* channel, rtc::SSLRole* role);
290 bool GetChannelTransportStats(cricket::BaseChannel* ch, SessionStats* stats);
311 void OnDtlsSetupFailure(cricket::BaseChannel*, bool rtcp);
385 cricket::BaseChannel* GetChannel(const std::string& content_name);
Dwebrtcsession.cc775 bool WebRtcSession::GetSslRole(const cricket::BaseChannel* channel, in GetSslRole()
1025 auto set_content = [this, action, source, err](cricket::BaseChannel* ch) { in PushdownMediaDescription()
1118 bool WebRtcSession::GetChannelTransportStats(cricket::BaseChannel* ch, in GetChannelTransportStats()
1158 cricket::BaseChannel* WebRtcSession::GetChannel( in GetChannel()
1179 cricket::BaseChannel* first_channel = GetChannel(transport_name); in EnableBundle()
1182 first_channel](cricket::BaseChannel* ch) { in EnableBundle()
1892 void WebRtcSession::OnDtlsSetupFailure(cricket::BaseChannel*, bool rtcp) { in OnDtlsSetupFailure() argument
2068 cricket::BaseChannel* channel = GetChannel(content.name); in ReadyToUseRemoteCandidate()
Dwebrtcsession_unittest.cc285 cricket::TransportChannel* rtp_transport_channel(cricket::BaseChannel* ch) { in rtp_transport_channel()
292 cricket::TransportChannel* rtcp_transport_channel(cricket::BaseChannel* ch) { in rtcp_transport_channel()
2996 cricket::BaseChannel* voice_channel = session_->voice_channel(); in TEST_F()
4247 session_->video_channel()->SetOption(cricket::BaseChannel::ST_RTP, in TEST_F()
4250 session_->voice_channel()->SetOption(cricket::BaseChannel::ST_RTP, in TEST_F()