Home
last modified time | relevance | path

Searched refs:endpoints_ (Results 1 – 18 of 18) sorted by relevance

/external/openscreen/discovery/dnssd/public/
Ddns_sd_instance_endpoint.cc46 endpoints_(std::move(endpoints)), in DnsSdInstanceEndpoint()
56 endpoints_(std::move(endpoints)), in DnsSdInstanceEndpoint()
76 OSP_CHECK(!endpoints_.empty()); in InitializeEndpoints()
77 std::sort(endpoints_.begin(), endpoints_.end()); in InitializeEndpoints()
78 for (const auto& endpoint : endpoints_) { in InitializeEndpoints()
90 if (lhs.endpoints_.size() != rhs.endpoints_.size()) { in operator <()
91 return lhs.endpoints_.size() < rhs.endpoints_.size(); in operator <()
94 for (int i = 0; i < static_cast<int>(lhs.endpoints_.size()); i++) { in operator <()
95 if (lhs.endpoints_[i] != rhs.endpoints_[i]) { in operator <()
96 return lhs.endpoints_[i] < rhs.endpoints_[i]; in operator <()
Ddns_sd_instance_endpoint.h87 const std::vector<IPEndpoint>& endpoints() const { return endpoints_; } in endpoints()
143 std::vector<IPEndpoint> endpoints_; variable
/external/libchrome/mojo/public/js/lib/
Drouter.js67 this.endpoints_ = new Map();
84 } while (this.endpoints_.has(id));
87 this.endpoints_.set(id, endpoint);
112 var endpoint = this.endpoints_.get(interfaceEndpointHandle.id());
129 var targetEndpoint = this.endpoints_.get(
154 var endpoint = this.endpoints_.get(interfaceEndpointHandle.id());
177 var endpoint = this.endpoints_.get(interfaceId);
181 this.endpoints_.set(interfaceId, endpoint);
216 var endpoint = this.endpoints_.get(interfaceId);
245 var endpoint = this.endpoints_.get(interfaceId);
[all …]
/external/libchrome/mojo/public/cpp/bindings/lib/
Dmultiplex_router.cc357 endpoints_.clear(); in ~MultiplexRouter()
388 } while (base::ContainsKey(endpoints_, id)); in AssociateInterface()
391 endpoints_[id] = endpoint; in AssociateInterface()
440 DCHECK(base::ContainsKey(endpoints_, id)); in CloseEndpointHandle()
441 InterfaceEndpoint* endpoint = endpoints_[id].get(); in CloseEndpointHandle()
464 DCHECK(base::ContainsKey(endpoints_, id)); in AttachEndpointClient()
466 InterfaceEndpoint* endpoint = endpoints_[id].get(); in AttachEndpointClient()
483 DCHECK(base::ContainsKey(endpoints_, id)); in DetachEndpointClient()
485 InterfaceEndpoint* endpoint = endpoints_[id].get(); in DetachEndpointClient()
519 for (auto iter = endpoints_.begin(); iter != endpoints_.end(); ++iter) in PauseIncomingMethodCallProcessing()
[all …]
Dmultiplex_router.h263 endpoints_; variable
/external/libchrome/ipc/
Dipc_mojo_bootstrap.cc173 endpoints_.insert({ sender_id, sender_endpoint }); in CreateChannelEndpoints()
174 endpoints_.insert({ receiver_id, receiver_endpoint }); in CreateChannelEndpoints()
214 } while (ContainsKey(endpoints_, id)); in AssociateInterface()
220 endpoints_.insert({id, endpoint}); in AssociateInterface()
276 DCHECK(ContainsKey(endpoints_, id)); in CloseEndpointHandle()
277 Endpoint* endpoint = endpoints_[id].get(); in CloseEndpointHandle()
297 DCHECK(ContainsKey(endpoints_, id)); in AttachEndpointClient()
299 Endpoint* endpoint = endpoints_[id].get(); in AttachEndpointClient()
315 DCHECK(ContainsKey(endpoints_, id)); in DetachEndpointClient()
317 Endpoint* endpoint = endpoints_[id].get(); in DetachEndpointClient()
[all …]
/external/openscreen/cast/common/channel/
Dvirtual_connection_router.cc114 return endpoints_.emplace(std::move(local_id), endpoint).second; in AddHandlerForLocalId()
119 return endpoints_.erase(local_id) == 1u; in RemoveHandlerForLocalId()
167 for (const auto& entry : endpoints_) { in BroadcastFromLocalPeer()
203 for (const auto& entry : endpoints_) { in OnMessage()
227 auto it = endpoints_.find(local_id); in OnMessage()
228 if (it != endpoints_.end()) { in OnMessage()
Dvirtual_connection_router.h136 std::map<std::string /* local_id */, CastMessageHandler*> endpoints_; variable
/external/webrtc/test/network/
Dnetwork_emulation.cc346 : endpoints_(endpoints) {} in EndpointsContainer()
350 for (auto* endpoint : endpoints_) { in LookupByLocalAddress()
360 for (auto* e : endpoints_) { in HasEndpoint()
371 for (auto* endpoint : endpoints_) { in GetEnabledNetworks()
382 for (auto* endpoint : endpoints_) { in GetStats()
Dnetwork_emulation_manager.h102 std::vector<std::unique_ptr<EmulatedEndpoint>> endpoints_; variable
Dnetwork_emulation.h218 const std::vector<EmulatedEndpointImpl*> endpoints_;
Dnetwork_emulation_manager.cc104 endpoints_.push_back(std::move(node)); in CreateEndpoint()
/external/tensorflow/tensorflow/java/src/gen/cc/
Dop_specs.h146 const std::vector<EndpointSpec> endpoints() const { return endpoints_; } in endpoints()
169 std::vector<EndpointSpec> endpoints_; variable
Dop_specs.cc386 op.endpoints_.push_back(CreateEndpoint(op_def, api_def, endpoint_def)); in Create()
/external/webrtc/test/peer_scenario/
Dpeer_scenario_client.cc157 : endpoints_(CreateEndpoints(net, config.endpoints)), in PeerScenarioClient()
188 for (const auto& kv : endpoints_) in PeerScenarioClient()
248 RTC_CHECK_GT(endpoints_.size(), index); in endpoint()
249 return endpoints_.at(index); in endpoint()
Dpeer_scenario_client.h153 const std::map<int, EmulatedEndpoint*> endpoints_;
/external/webrtc/test/scenario/
Dcall_client.cc330 endpoints_.push_back({endpoint, port}); in Bind()
335 for (auto ep_port : endpoints_) in UnBind()
Dcall_client.h149 std::vector<std::pair<EmulatedEndpoint*, uint16_t>> endpoints_; variable