/external/webrtc/webrtc/p2p/base/ |
transportchannel.h | 109 virtual bool GetSslRole(rtc::SSLRole* role) const = 0;
|
faketransportcontroller.h | 112 bool GetSslRole(rtc::SSLRole* role) const override { 391 bool GetSslRole(rtc::SSLRole* role) const override { 395 return channels_.begin()->second->GetSslRole(role);
|
dtlstransport.h | 216 bool GetSslRole(rtc::SSLRole* ssl_role) const override {
|
transport.h | 246 virtual bool GetSslRole(rtc::SSLRole* ssl_role) const { return false; }
|
dtlstransportchannel.h | 134 bool GetSslRole(rtc::SSLRole* role) const override;
|
p2ptransportchannel.h | 118 bool GetSslRole(rtc::SSLRole* role) const override { return false; }
|
transportcontroller.h | 51 bool GetSslRole(const std::string& transport_name, rtc::SSLRole* role);
|
transportcontroller.cc | 69 bool TransportController::GetSslRole(const std::string& transport_name, 356 return t->GetSslRole(role);
|
dtlstransportchannel.cc | 185 bool DtlsTransportChannelWrapper::GetSslRole(rtc::SSLRole* role) const {
|
dtlstransportchannel_unittest.cc | 824 EXPECT_TRUE(client1_.transport()->GetSslRole(&channel1_role)); 825 EXPECT_TRUE(client2_.transport()->GetSslRole(&channel2_role)); [all...] |
transportcontroller_unittest.cc | 265 EXPECT_FALSE(transport_controller_->GetSslRole("video", &role)); 266 EXPECT_TRUE(transport_controller_->GetSslRole("audio", &role));
|
/external/webrtc/talk/app/webrtc/ |
webrtcsessiondescriptionfactory.cc | 419 if (session_->GetSslRole(session_->voice_channel(), &ssl_role)) { 423 if (session_->GetSslRole(session_->video_channel(), &ssl_role)) { 427 if (session_->GetSslRole(session_->data_channel(), &ssl_role)) {
|
webrtcsession.h | 207 bool GetSslRole(const std::string& transport_name, rtc::SSLRole* role); 211 bool GetSslRole(const cricket::BaseChannel* channel, rtc::SSLRole* role);
|
webrtcsession.cc | 764 bool WebRtcSession::GetSslRole(const std::string& transport_name, 772 return transport_controller_->GetSslRole(transport_name, role); 775 bool WebRtcSession::GetSslRole(const cricket::BaseChannel* channel, 777 return channel && GetSslRole(channel->transport_name(), role); [all...] |
peerconnection.cc | [all...] |
/external/webrtc/talk/session/media/ |
channel.cc | 925 if (!channel->GetSslRole(&role)) { 926 LOG(LS_WARNING) << "GetSslRole failed"; [all...] |