HomeSort by relevance Sort by last modified time
    Searched defs:broker (Results 1 - 4 of 4) sorted by null

  /external/v8/src/compiler/
js-heap-copy-reducer.cc 8 #include "src/compiler/js-heap-broker.h"
21 JSHeapCopyReducer::JSHeapCopyReducer(JSHeapBroker* broker) : broker_(broker) {}
23 JSHeapBroker* JSHeapCopyReducer::broker() { return broker_; } function in class:v8::internal::compiler::JSHeapCopyReducer
28 ObjectRef(broker(), HeapConstantOf(node->op()));
34 if (p.site().ToHandle(&site)) AllocationSiteRef(broker(), site);
38 ScopeInfoRef(broker(), ScopeInfoOf(node->op()));
43 SharedFunctionInfoRef(broker(), p.shared_info());
44 HeapObjectRef(broker(), p.feedback_cell());
45 HeapObjectRef(broker(), p.code())
    [all...]
js-heap-broker.cc 5 #include "src/compiler/js-heap-broker.h"
27 static ObjectData* Serialize(JSHeapBroker* broker, Handle<Object> object);
30 : broker(broker_), object(object_), is_smi(is_smi_) {
31 broker->AddData(object, this);
40 JSHeapBroker* const broker; member in class:v8::internal::compiler::ObjectData
49 broker->GetOrCreateData(handle(object_->name(), broker->isolate()))
53 static HeapObjectData* Serialize(JSHeapBroker* broker,
141 NameData(JSHeapBroker* broker, Handle<Name> object, HeapObjectType type)
142 : HeapObjectData(broker, object, type) {
1175 JSHeapBroker* ObjectRef::broker() const { return data_->broker; } function in class:v8::internal::compiler::ObjectRef
    [all...]
js-typed-lowering.cc 97 JSHeapBroker* broker = lowering_->js_heap_broker(); local
98 if (m.right().HasValue() && m.right().Ref(broker).IsString()) {
99 StringRef right_string = m.right().Ref(broker).AsString();
102 if (m.left().HasValue() && m.left().Ref(broker).IsString()) {
103 StringRef left_string = m.left().Ref(broker).AsString();
    [all...]
  /external/libchrome/mojo/core/
node_controller.cc 22 #include "mojo/core/broker.h"
208 // Use the bootstrap channel for the broker and receive the node's channel
209 // synchronously as the first message from the broker.
212 broker_ = std::make_unique<Broker>(
218 // the broker was unable to negotiate a NodeChannel pipe. In this case we
296 // Shared buffer creation failure is fatal, so always use the broker when we
578 // node's inviter or broker (i.e. we don't know its process handle), ask
579 // the broker to relay for us.
580 scoped_refptr<NodeChannel> broker = GetBrokerChannel(); local
582 if (!GetConfiguration().is_broker_process && broker) {
603 scoped_refptr<NodeChannel> broker = GetBrokerChannel(); local
623 scoped_refptr<NodeChannel> broker = GetBrokerChannel(); local
703 scoped_refptr<NodeChannel> broker = GetBrokerChannel(); local
794 scoped_refptr<NodeChannel> broker = GetBrokerChannel(); local
910 scoped_refptr<NodeChannel> broker; local
    [all...]

Completed in 171 milliseconds