/external/webrtc/talk/app/webrtc/ |
peerconnectionfactory_unittest.cc | 162 rtc::scoped_ptr<FakeDtlsIdentityStore> dtls_identity_store( 165 config, nullptr, nullptr, std::move(dtls_identity_store), &observer)); 183 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store( 187 std::move(dtls_identity_store), &observer_)); 213 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store( 217 std::move(dtls_identity_store), &observer_)); 242 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store( 246 std::move(dtls_identity_store), &observer_)); 263 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store( 267 std::move(dtls_identity_store), &observer_)) [all...] |
peerconnectionfactory.cc | 253 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, 257 if (!dtls_identity_store.get()) { 261 dtls_identity_store.reset( 274 std::move(dtls_identity_store), observer)) {
|
webrtcsessiondescriptionfactory.h | 97 // Construct with DTLS enabled using the specified |dtls_identity_store| to 102 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, 150 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
peerconnectionfactory.h | 62 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
webrtcsessiondescriptionfactory.cc | 135 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, 148 dtls_identity_store_(std::move(dtls_identity_store)), 176 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, 182 std::move(dtls_identity_store),
|
peerconnection_unittest.cc | 153 rtc::scoped_ptr<webrtc::DtlsIdentityStoreInterface> dtls_identity_store) { 155 if (!client->Init(constraints, options, std::move(dtls_identity_store))) { 166 rtc::scoped_ptr<FakeDtlsIdentityStore> dtls_identity_store( 171 std::move(dtls_identity_store)); 740 rtc::scoped_ptr<webrtc::DtlsIdentityStoreInterface> dtls_identity_store) { 763 std::move(port_allocator), constraints, std::move(dtls_identity_store)); 770 rtc::scoped_ptr<webrtc::DtlsIdentityStoreInterface> dtls_identity_store) { 779 std::move(dtls_identity_store), this); [all...] |
peerconnectioninterface.h | 532 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
peerconnection.h | 78 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
webrtcsession.cc | 600 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, 628 dtls_enabled_ = (dtls_identity_store || certificate); 724 // Use the |dtls_identity_store| to generate a certificate. 725 RTC_DCHECK(dtls_identity_store); 727 signaling_thread(), channel_manager_, std::move(dtls_identity_store), [all...] |
webrtcsession.h | 171 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
webrtcsession_unittest.cc | 172 enum RTCCertificateGenerationMethod { ALREADY_GENERATED, DTLS_IDENTITY_STORE }; 399 // If |dtls_identity_store| != null or |rtc_configuration| contains 403 // |dtls_identity_store|. 405 rtc::scoped_ptr<webrtc::DtlsIdentityStoreInterface> dtls_identity_store, 420 std::move(dtls_identity_store), 460 rtc::scoped_ptr<FakeDtlsIdentityStore> dtls_identity_store; local 465 } else if (cert_gen_method == DTLS_IDENTITY_STORE) { 466 dtls_identity_store.reset(new FakeDtlsIdentityStore()); 467 dtls_identity_store->set_should_fail(false); 471 Init(std::move(dtls_identity_store), configuration) [all...] |
peerconnectioninterface_unittest.cc | 567 scoped_ptr<webrtc::DtlsIdentityStoreInterface> dtls_identity_store; local 573 dtls_identity_store.reset(new FakeDtlsIdentityStore()); 577 std::move(dtls_identity_store), &observer_); [all...] |
peerconnection.cc | 592 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, 648 std::move(dtls_identity_store), configuration)) { [all...] |
/external/webrtc/talk/app/webrtc/test/ |
peerconnectiontestwrapper.cc | 95 rtc::scoped_ptr<webrtc::DtlsIdentityStoreInterface> dtls_identity_store( 100 std::move(dtls_identity_store), this);
|