/external/openscreen/discovery/dnssd/public/ |
D | dns_sd_instance_endpoint.cc | 46 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 <()
|
D | dns_sd_instance_endpoint.h | 87 const std::vector<IPEndpoint>& endpoints() const { return endpoints_; } in endpoints() 143 std::vector<IPEndpoint> endpoints_; variable
|
/external/libchrome/mojo/public/js/lib/ |
D | router.js | 67 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/ |
D | multiplex_router.cc | 357 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 …]
|
D | multiplex_router.h | 263 endpoints_; variable
|
/external/libchrome/ipc/ |
D | ipc_mojo_bootstrap.cc | 173 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/ |
D | virtual_connection_router.cc | 114 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()
|
D | virtual_connection_router.h | 136 std::map<std::string /* local_id */, CastMessageHandler*> endpoints_; variable
|
/external/webrtc/test/network/ |
D | network_emulation.cc | 346 : 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()
|
D | network_emulation_manager.h | 102 std::vector<std::unique_ptr<EmulatedEndpoint>> endpoints_; variable
|
D | network_emulation.h | 218 const std::vector<EmulatedEndpointImpl*> endpoints_;
|
D | network_emulation_manager.cc | 104 endpoints_.push_back(std::move(node)); in CreateEndpoint()
|
/external/tensorflow/tensorflow/java/src/gen/cc/ |
D | op_specs.h | 146 const std::vector<EndpointSpec> endpoints() const { return endpoints_; } in endpoints() 169 std::vector<EndpointSpec> endpoints_; variable
|
D | op_specs.cc | 386 op.endpoints_.push_back(CreateEndpoint(op_def, api_def, endpoint_def)); in Create()
|
/external/webrtc/test/peer_scenario/ |
D | peer_scenario_client.cc | 157 : 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()
|
D | peer_scenario_client.h | 153 const std::map<int, EmulatedEndpoint*> endpoints_;
|
/external/webrtc/test/scenario/ |
D | call_client.cc | 330 endpoints_.push_back({endpoint, port}); in Bind() 335 for (auto ep_port : endpoints_) in UnBind()
|
D | call_client.h | 149 std::vector<std::pair<EmulatedEndpoint*, uint16_t>> endpoints_; variable
|