Lines Matching refs:DataChannel
63 using webrtc::DataChannel;
369 const std::map<std::string, rtc::scoped_refptr<DataChannel>>& in AddSendStreams()
379 const DataChannel* channel = kv.second; in AddSendStreams()
380 if (channel->state() == DataChannel::kConnecting || in AddSendStreams()
381 channel->state() == DataChannel::kOpen) { in AddSendStreams()
1792 DataChannel* data_channel = it->second; in UpdateClosingRtpDataChannels()
1805 if (data_channel->state() == DataChannel::kClosed) { in UpdateClosingRtpDataChannels()
1816 rtc::scoped_refptr<DataChannel> channel( in CreateRemoteRtpDataChannel()
1828 rtc::scoped_refptr<DataChannel> PeerConnection::InternalCreateDataChannel( in InternalCreateDataChannel()
1856 rtc::scoped_refptr<DataChannel> channel(DataChannel::Create( in InternalCreateDataChannel()
1897 void PeerConnection::OnSctpDataChannelClosed(DataChannel* channel) { in OnSctpDataChannelClosed()
1932 std::map<std::string, rtc::scoped_refptr<DataChannel>> temp_rtp_dcs; in OnDataChannelDestroyed()
1938 std::vector<rtc::scoped_refptr<DataChannel>> temp_sctp_dcs; in OnDataChannelDestroyed()
1948 rtc::scoped_refptr<DataChannel> channel( in OnDataChannelOpenMessage()
2015 DataChannel* PeerConnection::FindDataChannelBySid(int sid) const { in FindDataChannelBySid()