/external/webrtc/webrtc/p2p/base/ |
transportcontroller.cc | 32 CandidatesData(const std::string& transport_name, 34 : transport_name(transport_name), candidates(candidates) {} 36 std::string transport_name; member in struct:cricket::CandidatesData 69 bool TransportController::GetSslRole(const std::string& transport_name, 72 &TransportController::GetSslRole_w, this, transport_name, role)); 82 const std::string& transport_name, 86 transport_name, certificate)); 90 const std::string& transport_name, 94 transport_name, cert)) [all...] |
transportcontroller.h | 51 bool GetSslRole(const std::string& transport_name, rtc::SSLRole* role); 58 const std::string& transport_name, 61 bool GetRemoteSSLCertificate(const std::string& transport_name, 63 bool SetLocalTransportDescription(const std::string& transport_name, 67 bool SetRemoteTransportDescription(const std::string& transport_name, 74 bool AddRemoteCandidates(const std::string& transport_name, 77 bool ReadyForRemoteCandidates(const std::string& transport_name); 78 bool GetStats(const std::string& transport_name, TransportStats* stats); 83 const std::string& transport_name, 88 virtual void DestroyTransportChannel_w(const std::string& transport_name, [all...] |
transportchannelimpl.h | 35 explicit TransportChannelImpl(const std::string& transport_name, 37 : TransportChannel(transport_name, component) {}
|
transportchannel.h | 53 TransportChannel(const std::string& transport_name, int component) 54 : transport_name_(transport_name), 70 const std::string& transport_name() const { return transport_name_; } function in class:cricket::TransportChannel
|
faketransportcontroller.h | 491 FakeTransport* GetTransport_w(const std::string& transport_name) { 493 TransportController::GetTransport_w(transport_name)); 501 TransportChannel* CreateTransportChannel_w(const std::string& transport_name, 506 return TransportController::CreateTransportChannel_w(transport_name, 515 Transport* CreateTransport_w(const std::string& transport_name) override { 516 return new FakeTransport(transport_name);
|
transport.h | 136 std::string transport_name; member in struct:cricket::TransportStats
|
p2ptransportchannel.cc | 205 P2PTransportChannel::P2PTransportChannel(const std::string& transport_name, 209 : TransportChannelImpl(transport_name, component), 425 SessionId(), transport_name(), component(), ice_ufrag_, ice_pwd_)); 486 LOG(LS_INFO) << "P2PTransportChannel: " << transport_name() << ", component " [all...] |
p2ptransportchannel.h | 68 P2PTransportChannel(const std::string& transport_name,
|
transportcontroller_unittest.cc | 170 void OnCandidatesGathered(const std::string& transport_name, 175 candidates_[transport_name].insert(candidates_[transport_name].end(), 187 // transport_name => candidates 399 EXPECT_EQ("audio", stats.transport_name);
|
transport.cc | 302 stats->transport_name = name();
|
dtlstransportchannel.cc | 94 : TransportChannelImpl(channel->transport_name(), channel->component()),
|
/external/webrtc/talk/app/webrtc/ |
webrtcsession.cc | 764 bool WebRtcSession::GetSslRole(const std::string& transport_name, 772 return transport_controller_->GetSslRole(transport_name, role); 777 return channel && GetSslRole(channel->transport_name(), role); 1127 const std::string& transport_name = ch->transport_name(); local 1178 const std::string& transport_name = *first_content_name; local [all...] |
webrtcsession.h | 207 bool GetSslRole(const std::string& transport_name, rtc::SSLRole* role); 294 const std::string& transport_name, 298 virtual bool GetRemoteSSLCertificate(const std::string& transport_name, 453 const std::string& transport_name,
|
statscollector_unittest.cc | 99 bool(const std::string& transport_name, 102 bool(const std::string& transport_name, 532 transport_stats.transport_name = kTransportName; 689 transport_stats.transport_name = "audio"; 693 session_stats.transport_stats[transport_stats.transport_name] = 703 GetLocalCertificate(transport_stats.transport_name, _)) 706 GetRemoteSSLCertificate(transport_stats.transport_name, _)) [all...] |
statscollector.cc | 711 transport_iter.second.transport_name, &certificate)) { 719 transport_iter.second.transport_name, cert.accept())) { 727 transport_iter.second.transport_name, channel_iter.component)); [all...] |
webrtcsession_unittest.cc | [all...] |
/external/webrtc/talk/session/media/ |
channel.cc | 244 bool BaseChannel::SetTransport(const std::string& transport_name) { 246 Bind(&BaseChannel::SetTransport_w, this, transport_name)); 249 bool BaseChannel::SetTransport_w(const std::string& transport_name) { 252 if (transport_name == transport_name_) { 270 << " on " << transport_name << " transport "; 273 transport_name, cricket::ICE_CANDIDATE_COMPONENT_RTCP), 282 transport_name, cricket::ICE_CANDIDATE_COMPONENT_RTP)); 294 transport_name_ = transport_name; [all...] |
channel.h | 98 const std::string& transport_name() const { return transport_name_; } function in class:cricket::BaseChannel 123 bool SetTransport(const std::string& transport_name); 181 bool SetTransport_w(const std::string& transport_name);
|
/external/webrtc/webrtc/voice_engine/ |
channel.cc | 338 std::string transport_name = local 343 transport_name.c_str()); 370 std::string transport_name = local 375 transport_name.c_str()); [all...] |