Home
last modified time | relevance | path

Searched refs:InternalDataChannelInit (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/talk/app/webrtc/
Ddatachannel.h68 struct InternalDataChannelInit : public DataChannelInit { struct
75 InternalDataChannelInit() : open_handshake_role(kOpener) {} in InternalDataChannelInit() argument
76 explicit InternalDataChannelInit(const DataChannelInit& base) in InternalDataChannelInit() function
132 const InternalDataChannelInit& config);
243 bool Init(const InternalDataChannelInit& config);
260 InternalDataChannelInit config_;
Ddatachannel_unittest.cc103 webrtc::InternalDataChannelInit init_;
236 webrtc::InternalDataChannelInit init; in TEST_F()
249 webrtc::InternalDataChannelInit init; in TEST_F()
279 webrtc::InternalDataChannelInit init; in TEST_F()
376 webrtc::InternalDataChannelInit config; in TEST_F()
379 config.open_handshake_role = webrtc::InternalDataChannelInit::kNone; in TEST_F()
392 webrtc::InternalDataChannelInit config; in TEST_F()
395 config.open_handshake_role = webrtc::InternalDataChannelInit::kAcker; in TEST_F()
410 webrtc::InternalDataChannelInit init; in TEST_F()
411 EXPECT_EQ(webrtc::InternalDataChannelInit::kOpener, init.open_handshake_role); in TEST_F()
[all …]
Ddatachannel.cc131 const InternalDataChannelInit& config) { in Create()
158 bool DataChannel::Init(const InternalDataChannelInit& config) { in Init()
185 case webrtc::InternalDataChannelInit::kNone: // pre-negotiated in Init()
188 case webrtc::InternalDataChannelInit::kOpener: in Init()
191 case webrtc::InternalDataChannelInit::kAcker: in Init()
Dpeerconnection.h307 const InternalDataChannelInit* config);
323 const InternalDataChannelInit& config);
Dpeerconnection.cc838 rtc::scoped_ptr<InternalDataChannelInit> internal_config; in CreateDataChannel()
840 internal_config.reset(new InternalDataChannelInit(*config)); in CreateDataChannel()
1830 const InternalDataChannelInit* config) { in InternalCreateDataChannel()
1839 InternalDataChannelInit new_config = in InternalCreateDataChannel()
1840 config ? (*config) : InternalDataChannelInit(); in InternalCreateDataChannel()
1947 const InternalDataChannelInit& config) { in OnDataChannelOpenMessage()
Dwebrtcsession.h333 sigslot::signal2<const std::string&, const InternalDataChannelInit&>
Dwebrtcsession_unittest.cc88 using webrtc::InternalDataChannelInit;
426 const InternalDataChannelInit& config) { in OnDataChannelOpenMessage()
1368 webrtc::InternalDataChannelInit dci; in CreateDataChannel()
1475 InternalDataChannelInit last_data_channel_config_;
3951 EXPECT_EQ(webrtc::InternalDataChannelInit::kAcker, in TEST_P()
Dwebrtcsession.cc1906 InternalDataChannelInit config; in OnDataChannelMessageReceived()
1913 config.open_handshake_role = InternalDataChannelInit::kAcker; in OnDataChannelMessageReceived()
Dstatscollector_unittest.cc584 InternalDataChannelInit config; in AddDataChannel()