Home
last modified time | relevance | path

Searched refs:SctpDataChannel (Results 1 – 15 of 15) sorted by relevance

/external/webrtc/pc/
Dsctp_data_channel.cc131 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 …]
Ddata_channel_controller.h47 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_
Dsctp_data_channel.h30 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;
Ddata_channel_controller.cc65 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 …]
Ddata_channel_unittest.cc24 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 …]
Dpeer_connection_internal.h46 virtual sigslot::signal1<SctpDataChannel*>&
Drtc_stats_collector.h230 void OnSctpDataChannelCreated(SctpDataChannel* channel);
Dpeer_connection.h279 sigslot::signal1<SctpDataChannel*>& SignalSctpDataChannelCreated() override { in SignalSctpDataChannelCreated()
838 SctpDataChannel* FindDataChannelBySid(int sid) const
Drtc_stats_collector_unittest.cc991 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()
Drtc_stats_collector.cc2031 void RTCStatsCollector::OnSctpDataChannelCreated(SctpDataChannel* channel) { in OnSctpDataChannelCreated()
Dpeer_connection.cc5546 static_cast<SctpDataChannel*>(channel)); in OnSctpDataChannelClosed()
5643 SctpDataChannel* PeerConnection::FindDataChannelBySid(int sid) const { in FindDataChannelBySid()
/external/webrtc/pc/test/
Dfake_data_channel_provider.h48 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_;
Dmock_data_channel.h21 class MockSctpDataChannel : public rtc::RefCountedObject<SctpDataChannel> {
44 : rtc::RefCountedObject<SctpDataChannel>(config,
Dfake_peer_connection_for_stats.h178 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_;
Dfake_peer_connection_base.h255 sigslot::signal1<SctpDataChannel*>& SignalSctpDataChannelCreated() override { in SignalSctpDataChannelCreated()
302 sigslot::signal1<SctpDataChannel*> SignalSctpDataChannelCreated_;