Searched refs:SctpDataChannel (Results 1 – 15 of 15) sorted by relevance
/external/webrtc/pc/ |
D | sctp_data_channel.cc | 131 rtc::scoped_refptr<SctpDataChannel> SctpDataChannel::Create( in Create() 137 rtc::scoped_refptr<SctpDataChannel> channel( in Create() 138 new rtc::RefCountedObject<SctpDataChannel>( in Create() 147 rtc::scoped_refptr<DataChannelInterface> SctpDataChannel::CreateProxy( in CreateProxy() 148 rtc::scoped_refptr<SctpDataChannel> channel) { in CreateProxy() 157 SctpDataChannel::SctpDataChannel(const InternalDataChannelInit& config, in SctpDataChannel() function in webrtc::SctpDataChannel 172 bool SctpDataChannel::Init() { in Init() 216 SctpDataChannel::~SctpDataChannel() { in ~SctpDataChannel() 220 void SctpDataChannel::RegisterObserver(DataChannelObserver* observer) { in RegisterObserver() 226 void SctpDataChannel::UnregisterObserver() { in UnregisterObserver() [all …]
|
D | data_channel_controller.h | 47 bool ConnectDataChannel(SctpDataChannel* webrtc_data_channel) override; 48 void DisconnectDataChannel(SctpDataChannel* webrtc_data_channel) override; 83 SctpDataChannel* FindDataChannelBySid(int sid) const; 117 sigslot::signal1<SctpDataChannel*>& SignalSctpDataChannelCreated() { in SignalSctpDataChannelCreated() 124 void OnSctpDataChannelClosed(SctpDataChannel* channel); 131 rtc::scoped_refptr<SctpDataChannel> InternalCreateSctpDataChannel( 195 std::vector<rtc::scoped_refptr<SctpDataChannel>> sctp_data_channels_ 197 std::vector<rtc::scoped_refptr<SctpDataChannel>> sctp_data_channels_to_free_ 221 sigslot::signal1<SctpDataChannel*> SignalSctpDataChannelCreated_
|
D | sctp_data_channel.h | 30 class SctpDataChannel; variable 41 virtual bool ConnectDataChannel(SctpDataChannel* data_channel) = 0; 43 virtual void DisconnectDataChannel(SctpDataChannel* data_channel) = 0; 112 class SctpDataChannel : public DataChannelInterface, 115 static rtc::scoped_refptr<SctpDataChannel> Create( 125 rtc::scoped_refptr<SctpDataChannel> channel); 220 SctpDataChannel(const InternalDataChannelInit& config, 225 ~SctpDataChannel() override;
|
D | data_channel_controller.cc | 65 SctpDataChannel* webrtc_data_channel) { in ConnectDataChannel() 74 webrtc_data_channel, &SctpDataChannel::OnTransportReady); in ConnectDataChannel() 76 webrtc_data_channel, &SctpDataChannel::OnDataReceived); in ConnectDataChannel() 78 webrtc_data_channel, &SctpDataChannel::OnClosingProcedureStartedRemotely); in ConnectDataChannel() 80 webrtc_data_channel, &SctpDataChannel::OnClosingProcedureComplete); in ConnectDataChannel() 85 SctpDataChannel* webrtc_data_channel) { in DisconnectDataChannel() 285 rtc::scoped_refptr<SctpDataChannel> channel = in InternalCreateDataChannelWithProxy() 288 return SctpDataChannel::CreateProxy(channel); in InternalCreateDataChannelWithProxy() 322 rtc::scoped_refptr<SctpDataChannel> 341 rtc::scoped_refptr<SctpDataChannel> channel(SctpDataChannel::Create( in InternalCreateSctpDataChannel() [all …]
|
D | data_channel_unittest.cc | 24 using webrtc::SctpDataChannel; 72 webrtc_data_channel_(SctpDataChannel::Create(provider_.get(), in SctpDataChannelTest() 95 rtc::scoped_refptr<SctpDataChannel> webrtc_data_channel_; 115 rtc::scoped_refptr<SctpDataChannel> dc = in TEST_F() 116 SctpDataChannel::Create(provider_.get(), "test1", init_, in TEST_F() 310 rtc::scoped_refptr<SctpDataChannel> dc = in TEST_F() 311 SctpDataChannel::Create(provider_.get(), "test1", init, in TEST_F() 324 rtc::scoped_refptr<SctpDataChannel> dc = in TEST_F() 325 SctpDataChannel::Create(provider_.get(), "test1", init, in TEST_F() 355 rtc::scoped_refptr<SctpDataChannel> dc = in TEST_F() [all …]
|
D | peer_connection_internal.h | 46 virtual sigslot::signal1<SctpDataChannel*>&
|
D | rtc_stats_collector.h | 230 void OnSctpDataChannelCreated(SctpDataChannel* channel);
|
D | peer_connection.h | 279 sigslot::signal1<SctpDataChannel*>& SignalSctpDataChannelCreated() override { in SignalSctpDataChannelCreated() 838 SctpDataChannel* FindDataChannelBySid(int sid) const
|
D | rtc_stats_collector_unittest.cc | 991 SctpDataChannel::ResetInternalIdAllocatorForTesting(-1); in TEST_F() 1406 rtc::scoped_refptr<SctpDataChannel> dummy_channel_a = SctpDataChannel::Create( in TEST_F() 1410 rtc::scoped_refptr<SctpDataChannel> dummy_channel_b = SctpDataChannel::Create( in TEST_F()
|
D | rtc_stats_collector.cc | 2031 void RTCStatsCollector::OnSctpDataChannelCreated(SctpDataChannel* channel) { in OnSctpDataChannelCreated()
|
D | peer_connection.cc | 5546 static_cast<SctpDataChannel*>(channel)); in OnSctpDataChannelClosed() 5643 SctpDataChannel* PeerConnection::FindDataChannelBySid(int sid) const { in FindDataChannelBySid()
|
/external/webrtc/pc/test/ |
D | fake_data_channel_provider.h | 48 bool ConnectDataChannel(webrtc::SctpDataChannel* data_channel) override { in ConnectDataChannel() 59 void DisconnectDataChannel(webrtc::SctpDataChannel* data_channel) override { in DisconnectDataChannel() 81 for (webrtc::SctpDataChannel* ch : std::set<webrtc::SctpDataChannel*>( in RemoveSctpDataStream() 99 for (webrtc::SctpDataChannel* ch : std::set<webrtc::SctpDataChannel*>( in set_send_blocked() 120 std::set<webrtc::SctpDataChannel*>::iterator it; in set_ready_to_send() 134 bool IsConnected(webrtc::SctpDataChannel* data_channel) const { in IsConnected() 152 std::set<webrtc::SctpDataChannel*> connected_channels_;
|
D | mock_data_channel.h | 21 class MockSctpDataChannel : public rtc::RefCountedObject<SctpDataChannel> { 44 : rtc::RefCountedObject<SctpDataChannel>(config,
|
D | fake_peer_connection_for_stats.h | 178 AddSctpDataChannel(SctpDataChannel::Create(&data_channel_provider_, label, in AddSctpDataChannel() 183 void AddSctpDataChannel(rtc::scoped_refptr<SctpDataChannel> data_channel) { in AddSctpDataChannel() 367 std::vector<rtc::scoped_refptr<SctpDataChannel>> sctp_data_channels_;
|
D | fake_peer_connection_base.h | 255 sigslot::signal1<SctpDataChannel*>& SignalSctpDataChannelCreated() override { in SignalSctpDataChannelCreated() 302 sigslot::signal1<SctpDataChannel*> SignalSctpDataChannelCreated_;
|