/external/webrtc/pc/ |
D | peer_connection_end_to_end_unittest.cc | 477 caller_->CreateDataChannel("data", init)); in TEST_P() 479 callee_->CreateDataChannel("data", init)); in TEST_P() 504 caller_->CreateDataChannel("data", init)); in TEST_P() 513 caller_->CreateDataChannel("hello", init)); in TEST_P() 515 callee_->CreateDataChannel("hello", init)); in TEST_P() 536 caller_->CreateDataChannel("data", init)); in TEST_P() 545 caller_->CreateDataChannel("hello", init)); in TEST_P() 547 callee_->CreateDataChannel("hello", init)); in TEST_P() 568 caller_->CreateDataChannel("data", init)); in TEST_P() 570 callee_->CreateDataChannel("data", init)); in TEST_P() [all …]
|
D | peer_connection_data_channel_unittest.cc | 188 EXPECT_TRUE(wrapper->pc()->CreateDataChannel("dc", nullptr)); in CreatePeerConnectionWithDataChannel() 273 caller->pc()->CreateDataChannel("dc", nullptr); in TEST_P() 337 EXPECT_TRUE(caller->pc()->CreateDataChannel("dc", nullptr)); in TEST_P() 345 EXPECT_FALSE(caller->pc()->CreateDataChannel("dc", nullptr)); in TEST_P()
|
D | peer_connection_interface_unittest.cc | 1900 pc_->CreateDataChannel("test1", NULL); in TEST_P() 1902 pc_->CreateDataChannel("test2", NULL); in TEST_P() 1948 pc_->CreateDataChannel("test1", NULL); in TEST_P() 1950 pc_->CreateDataChannel("test2", NULL); in TEST_P() 1979 pc_->CreateDataChannel("test1", NULL); in TEST_P() 2005 pc_->CreateDataChannel(offer_label, NULL); in TEST_P() 2046 pc_->CreateDataChannel(label, &config); in TEST_P() 2058 pc_->CreateDataChannel(label, nullptr); in TEST_P() 2062 pc_->CreateDataChannel(label, nullptr); in TEST_P() 2075 pc_->CreateDataChannel("1", &config); in TEST_P() [all …]
|
D | peer_connection_jsep_unittest.cc | 145 caller->CreateDataChannel("dc"); in TEST_F() 157 caller->CreateDataChannel("first"); in TEST_F() 158 caller->CreateDataChannel("second"); in TEST_F() 159 caller->CreateDataChannel("third"); in TEST_F() 404 caller->CreateDataChannel("dc"); in TEST_F() 1087 caller->CreateDataChannel("dc"); in TEST_F() 1115 caller->CreateDataChannel("dc"); in TEST_F() 1228 pc->CreateDataChannel("dc"); in TEST_F() 1248 caller->CreateDataChannel("dc"); in TEST_F() 2139 callee->CreateDataChannel("dummy"); in TEST_F() [all …]
|
D | peer_connection_integrationtest.cc | 392 void CreateDataChannel() { CreateDataChannel(nullptr); } in CreateDataChannel() function in webrtc::__anonb00edc420111::PeerConnectionWrapper 394 void CreateDataChannel(const webrtc::DataChannelInit* init) { in CreateDataChannel() function in webrtc::__anonb00edc420111::PeerConnectionWrapper 395 CreateDataChannel(kDataChannelLabel, init); in CreateDataChannel() 398 void CreateDataChannel(const std::string& label, in CreateDataChannel() function in webrtc::__anonb00edc420111::PeerConnectionWrapper 400 data_channel_ = pc()->CreateDataChannel(label, init); in CreateDataChannel() 3439 caller()->CreateDataChannel(); in TEST_P() 3469 auto data_channel = caller()->pc()->CreateDataChannel("label_1", nullptr); in TEST_P() 3474 caller()->CreateDataChannel("label_2", nullptr); in TEST_P() 3498 caller()->CreateDataChannel(); in TEST_P() 3536 caller()->CreateDataChannel(); in TEST_P() [all …]
|
D | peer_connection_histogram_unittest.cc | 546 caller->CreateDataChannel("foodata"); in TEST_F() 711 caller->CreateDataChannel("test_channel"); in TEST_F() 780 caller->CreateDataChannel("foo"); in TEST_F() 801 caller->CreateDataChannel("foo"); in TEST_F() 824 caller->CreateDataChannel("foo"); in TEST_F()
|
D | peer_connection_wrapper.cc | 307 PeerConnectionWrapper::CreateDataChannel(const std::string& label) { in CreateDataChannel() function in webrtc::PeerConnectionWrapper 308 return pc()->CreateDataChannel(label, nullptr); in CreateDataChannel()
|
D | peer_connection_wrapper.h | 166 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
|
D | peer_connection.h | 169 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel( 986 bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread());
|
D | rtc_stats_integrationtest.cc | 141 caller_->CreateDataChannel("data", init); in StartCall() 142 callee_->CreateDataChannel("data", init); in StartCall()
|
D | peer_connection_bundle_unittest.cc | 763 caller->CreateDataChannel("dc"); in TEST_P()
|
D | peer_connection.cc | 2121 rtc::scoped_refptr<DataChannelInterface> PeerConnection::CreateDataChannel( in CreateDataChannel() function in webrtc::PeerConnection 3566 if (!CreateDataChannel(content.name)) { in UpdateDataChannel() 6448 if (!CreateDataChannel(data->name)) { in CreateChannels() 6499 bool PeerConnection::CreateDataChannel(const std::string& mid) { in CreateDataChannel() function in webrtc::PeerConnection
|
/external/webrtc/test/pc/e2e/ |
D | test_peer.h | 72 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel( in CreateDataChannel() function 74 return wrapper_->CreateDataChannel(label); in CreateDataChannel()
|
/external/webrtc/sdk/objc/api/peerconnection/ |
D | RTCPeerConnection+DataChannel.mm | 27 self.nativePeerConnection->CreateDataChannel(labelString,
|
/external/webrtc/pc/test/ |
D | peer_connection_test_wrapper.cc | 133 PeerConnectionTestWrapper::CreateDataChannel( in CreateDataChannel() function in PeerConnectionTestWrapper 136 return peer_connection_->CreateDataChannel(label, &init); in CreateDataChannel()
|
D | peer_connection_test_wrapper.h | 58 rtc::scoped_refptr<webrtc::DataChannelInterface> CreateDataChannel(
|
D | fake_peer_connection_base.h | 123 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel( in CreateDataChannel() function
|
/external/webrtc/examples/unityplugin/ |
D | unity_plugin_apis.cc | 60 return g_peer_connection_map[peer_connection_id]->CreateDataChannel(); in AddDataChannel()
|
D | simple_peer_connection.h | 40 bool CreateDataChannel();
|
D | simple_peer_connection.cc | 493 bool SimplePeerConnection::CreateDataChannel() { in CreateDataChannel() function in SimplePeerConnection 497 data_channel_ = peer_connection_->CreateDataChannel("Hello", &init); in CreateDataChannel()
|
/external/webrtc/api/ |
D | peer_connection_proxy.h | 77 CreateDataChannel,
|
D | peer_connection_interface.h | 907 virtual rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
|
/external/webrtc/api/test/ |
D | mock_peerconnectioninterface.h | 104 CreateDataChannel,
|
D | dummy_peer_connection.h | 117 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel( in CreateDataChannel() function
|
/external/webrtc/sdk/android/src/jni/pc/ |
D | peer_connection.cc | 511 ExtractNativePC(jni, j_pc)->CreateDataChannel( in JNI_PeerConnection_CreateDataChannel()
|