HomeSort by relevance Sort by last modified time
    Searched full:content_name (Results 1 - 25 of 32) sorted by null

1 2

  /external/webrtc/webrtc/p2p/base/
portallocator.cc 16 PortAllocatorSession::PortAllocatorSession(const std::string& content_name,
21 : content_name_(content_name),
33 const std::string& content_name,
37 return CreateSessionInternal(content_name, component, ice_ufrag, ice_pwd);
transportinfo.h 30 TransportInfo(const std::string& content_name,
32 : content_name(content_name),
35 std::string content_name; member in struct:cricket::TransportInfo
sessiondescription.cc 52 bool ContentGroup::HasContentName(const std::string& content_name) const {
54 content_name) != content_names_.end());
57 void ContentGroup::AddContentName(const std::string& content_name) {
58 if (!HasContentName(content_name)) {
59 content_names_.push_back(content_name);
63 bool ContentGroup::RemoveContentName(const std::string& content_name) {
65 content_names_.begin(), content_names_.end(), content_name);
149 if (GetTransportInfoByName(transport_info.content_name) != NULL) {
159 if (transport_info->content_name == name) {
171 if (iter->content_name == name)
    [all...]
sessiondescription.h 55 // GroupInfo should be populated only with the |content_name| of the
66 bool HasContentName(const std::string& content_name) const;
67 void AddContentName(const std::string& content_name);
68 bool RemoveContentName(const std::string& content_name);
portallocator.h 114 PortAllocatorSession(const std::string& content_name,
125 std::string content_name() const { return content_name_; } function in class:cricket::PortAllocatorSession
191 const std::string& content_name,
240 const std::string& content_name,
  /external/webrtc/talk/session/media/
channelmanager.cc 253 const std::string& content_name,
258 transport_controller, content_name, rtcp, options));
264 const std::string& content_name,
277 transport_controller, content_name, rtcp);
311 const std::string& content_name,
316 transport_controller, content_name, rtcp, options));
322 const std::string& content_name,
335 worker_thread_, media_channel, transport_controller, content_name, rtcp);
369 const std::string& content_name,
374 content_name, rtcp, channel_type))
    [all...]
channelmanager.h 103 const std::string& content_name,
113 const std::string& content_name,
119 const std::string& content_name,
194 const std::string& content_name,
201 const std::string& content_name,
206 const std::string& content_name,
mediasession.cc 579 if (bundle_group.HasContentName(it->content_name) &&
580 it->content_name != selected_content_name) {
589 // Gets the CryptoParamsVec of the given |content_name| from |sdesc|, and
592 const std::string& content_name,
598 const ContentInfo* content = sdesc->GetContentByName(content_name);
645 const std::string& content_name) {
647 ContentInfo* content = sdesc->GetContentByName(content_name);
1564 std::string content_name = local
1623 std::string content_name = local
1689 std::string content_name = local
    [all...]
channel.cc 172 const std::string& content_name,
177 content_name_(content_name),
193 LOG(LS_INFO) << "Created channel for " << content_name;
222 if (!SetTransport(content_name())) {
269 LOG(LS_INFO) << "Create RTCP TransportChannel for " << content_name()
888 << content_name() << " "
    [all...]
channel.h 88 const std::string& content_name,
97 const std::string& content_name() const { return content_name_; } function in class:cricket::BaseChannel
346 const std::string& content_name,
448 const std::string& content_name,
536 const std::string& content_name,
mediasession.h 459 const std::string& content_name,
465 const std::string& content_name,
471 const std::string& content_name,
  /external/webrtc/webrtc/p2p/client/
fakeportallocator.h 87 const std::string& content_name,
91 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd,
169 const std::string& content_name,
174 worker_thread_, factory_, content_name, component, ice_ufrag, ice_pwd);
httpportallocator.h 53 const std::string& content_name,
99 const std::string& content_name,
httpportallocator.cc 105 const std::string& content_name,
113 : BasicPortAllocatorSession(allocator, content_name, component,
basicportallocator.cc 134 const std::string& content_name, int component,
137 this, content_name, component, ice_ufrag, ice_pwd);
144 const std::string& content_name,
148 : PortAllocatorSession(content_name, component,
438 LOG(LS_INFO) << "Adding allocated port for " << content_name();
439 port->set_content_name(content_name());
    [all...]
basicportallocator.h 75 const std::string& content_name,
98 const std::string& content_name,
  /external/webrtc/talk/app/webrtc/
statstypes.cc 164 ComponentId(const std::string& content_name, int component)
165 : ComponentId(StatsReport::kStatsReportTypeComponent, content_name,
179 ComponentId(StatsReport::StatsType type, const std::string& content_name,
182 content_name_(content_name),
200 CandidatePairId(const std::string& content_name, int component, int index)
201 : ComponentId(StatsReport::kStatsReportTypeCandidatePair, content_name,
655 const std::string& content_name, int component) {
656 return Id(new RefCountedObject<ComponentId>(content_name, component));
661 const std::string& content_name, int component, int index) {
663 content_name, component, index))
    [all...]
jsepsessiondescription.cc 129 const std::string& content_name = local
132 description_->GetTransportInfoByName(content_name);
webrtcsession.cc 1126 const std::string& content_name = ch->content_name(); local
    [all...]
webrtcsession.h 378 // Returns true and the TransportInfo of the given |content_name|
382 const std::string& content_name,
385 cricket::BaseChannel* GetChannel(const std::string& content_name);
394 // content called |content_name|.
395 bool GetLocalCandidateMediaIndex(const std::string& content_name,
statscollector.cc 605 const std::string& content_name, int component, int connection_id,
608 StatsReport::Id id(StatsReport::NewCandidatePairId(content_name, component,
789 proxy_to_transport_, pc_->session()->voice_channel()->content_name()));
792 << pc_->session()->voice_channel()->content_name();
    [all...]
statstypes.h 344 const std::string& content_name, int component);
346 const std::string& content_name, int component, int index);
statscollector.h 124 StatsReport* AddConnectionInfoReport(const std::string& content_name,
webrtcsdp.cc 294 std::string* content_name,
2219 std::string content_name; local
2277 << content_name; local
    [all...]
  /external/libmicrohttpd/src/microhttpd/
postprocessor.c 155 char *content_name; member in struct:MHD_PostProcessor
669 "name", &pp->content_name);
771 pp->content_name,
794 if ((NULL != pp->content_name) && (0 == (pp->have & NE_content_name)))
796 free (pp->content_name);
797 pp->content_name = NULL;
1049 if (pp->content_name != NULL)
    [all...]

Completed in 363 milliseconds

1 2