Home
last modified time | relevance | path

Searched refs:transport_name (Results 1 – 19 of 19) sorted by relevance

/external/webrtc/webrtc/p2p/base/
Dtransportcontroller.cc32 CandidatesData(const std::string& transport_name, in CandidatesData()
34 : transport_name(transport_name), candidates(candidates) {} in CandidatesData()
36 std::string transport_name; member
69 bool TransportController::GetSslRole(const std::string& transport_name, in GetSslRole() argument
72 &TransportController::GetSslRole_w, this, transport_name, role)); in GetSslRole()
82 const std::string& transport_name, in GetLocalCertificate() argument
86 transport_name, certificate)); in GetLocalCertificate()
90 const std::string& transport_name, in GetRemoteSSLCertificate() argument
94 transport_name, cert)); in GetRemoteSSLCertificate()
98 const std::string& transport_name, in SetLocalTransportDescription() argument
[all …]
Dtransportcontroller.h51 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 …]
Dtransportchannel.h53 TransportChannel(const std::string& transport_name, int component) in TransportChannel() argument
54 : transport_name_(transport_name), in TransportChannel()
70 const std::string& transport_name() const { return transport_name_; } in transport_name() function
Dtransportchannelimpl.h35 explicit TransportChannelImpl(const std::string& transport_name, in TransportChannelImpl() argument
37 : TransportChannel(transport_name, component) {} in TransportChannelImpl()
Dfaketransportcontroller.h491 FakeTransport* GetTransport_w(const std::string& transport_name) { in GetTransport_w() argument
493 TransportController::GetTransport_w(transport_name)); in GetTransport_w()
501 TransportChannel* CreateTransportChannel_w(const std::string& transport_name, in CreateTransportChannel_w() argument
506 return TransportController::CreateTransportChannel_w(transport_name, in CreateTransportChannel_w()
515 Transport* CreateTransport_w(const std::string& transport_name) override { in CreateTransport_w() argument
516 return new FakeTransport(transport_name); in CreateTransport_w()
Dtransportcontroller_unittest.cc170 void OnCandidatesGathered(const std::string& transport_name, in OnCandidatesGathered() argument
175 candidates_[transport_name].insert(candidates_[transport_name].end(), in OnCandidatesGathered()
399 EXPECT_EQ("audio", stats.transport_name); in TEST_F()
Dp2ptransportchannel.cc205 P2PTransportChannel::P2PTransportChannel(const std::string& transport_name, in P2PTransportChannel() argument
209 : TransportChannelImpl(transport_name, component), in P2PTransportChannel()
425 SessionId(), transport_name(), component(), ice_ufrag_, ice_pwd_)); in MaybeStartGathering()
486 LOG(LS_INFO) << "P2PTransportChannel: " << transport_name() << ", component " in OnCandidatesAllocationDone()
Dtransport.h136 std::string transport_name; member
Dp2ptransportchannel.h68 P2PTransportChannel(const std::string& transport_name,
Dtransport.cc302 stats->transport_name = name(); in GetStats()
Ddtlstransportchannel.cc94 : TransportChannelImpl(channel->transport_name(), channel->component()), in DtlsTransportChannelWrapper()
/external/webrtc/talk/app/webrtc/
Dwebrtcsession.cc764 bool WebRtcSession::GetSslRole(const std::string& transport_name, in GetSslRole() argument
772 return transport_controller_->GetSslRole(transport_name, role); in GetSslRole()
777 return channel && GetSslRole(channel->transport_name(), role); in GetSslRole()
1127 const std::string& transport_name = ch->transport_name(); in GetChannelTransportStats() local
1128 stats->proxy_to_transport[content_name] = transport_name; in GetChannelTransportStats()
1129 if (stats->transport_stats.find(transport_name) != in GetChannelTransportStats()
1136 if (!transport_controller_->GetStats(transport_name, &tstats)) { in GetChannelTransportStats()
1140 stats->transport_stats[transport_name] = tstats; in GetChannelTransportStats()
1145 const std::string& transport_name, in GetLocalCertificate() argument
1148 return transport_controller_->GetLocalCertificate(transport_name, in GetLocalCertificate()
[all …]
Dwebrtcsession.h207 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,
Dstatscollector_unittest.cc99 bool(const std::string& transport_name,
102 bool(const std::string& transport_name,
532 transport_stats.transport_name = kTransportName; in InitSessionStats()
689 transport_stats.transport_name = "audio"; in TestCertificateReports()
693 session_stats.transport_stats[transport_stats.transport_name] = in TestCertificateReports()
703 GetLocalCertificate(transport_stats.transport_name, _)) in TestCertificateReports()
706 GetRemoteSSLCertificate(transport_stats.transport_name, _)) in TestCertificateReports()
1377 transport_stats.transport_name = "audio"; in TEST_F()
1381 session_stats.transport_stats[transport_stats.transport_name] = in TEST_F()
1434 transport_stats.transport_name = "audio"; in TEST_F()
[all …]
Dstatscollector.cc711 transport_iter.second.transport_name, &certificate)) { in ExtractSessionInfo()
719 transport_iter.second.transport_name, cert.accept())) { in ExtractSessionInfo()
727 transport_iter.second.transport_name, channel_iter.component)); in ExtractSessionInfo()
Dwebrtcsession_unittest.cc2372 EXPECT_EQ(voice_transport_channel->transport_name(), "audio_content_name"); in TEST_F()
2376 EXPECT_EQ(video_transport_channel->transport_name(), "video_content_name"); in TEST_F()
/external/webrtc/talk/session/media/
Dchannel.cc244 bool BaseChannel::SetTransport(const std::string& transport_name) { in SetTransport() argument
246 Bind(&BaseChannel::SetTransport_w, this, transport_name)); in SetTransport()
249 bool BaseChannel::SetTransport_w(const std::string& transport_name) { in SetTransport_w() argument
252 if (transport_name == transport_name_) { in SetTransport_w()
270 << " on " << transport_name << " transport "; in SetTransport_w()
273 transport_name, cricket::ICE_CANDIDATE_COMPONENT_RTCP), in SetTransport_w()
282 transport_name, cricket::ICE_CANDIDATE_COMPONENT_RTP)); in SetTransport_w()
294 transport_name_ = transport_name; in SetTransport_w()
1106 << transport_name(); in SetRtcpMux_w()
Dchannel.h98 const std::string& transport_name() const { return transport_name_; } in transport_name() function
123 bool SetTransport(const std::string& transport_name);
181 bool SetTransport_w(const std::string& transport_name);
/external/webrtc/webrtc/voice_engine/
Dchannel.cc338 std::string transport_name = in SendRtp() local
343 transport_name.c_str()); in SendRtp()
370 std::string transport_name = in SendRtcp() local
375 transport_name.c_str()); in SendRtcp()