Home
last modified time | relevance | path

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

/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/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()