Searched refs:HeapEntry (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.h | 35 class HeapEntry; 70 HeapGraphEdge(Type type, const char* name, HeapEntry* from, HeapEntry* to); 71 HeapGraphEdge(Type type, int index, HeapEntry* from, HeapEntry* to); 83 V8_INLINE HeapEntry* from() const; 84 HeapEntry* to() const { return to_entry_; } in to() 95 HeapEntry* to_entry_; 103 // HeapEntry instances represent an entity from the heap (or a special 105 class HeapEntry { class [all...] |
H A D | heap-snapshot-generator.cc | 192 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, HeapEntry* from, in HeapGraphEdge() 193 HeapEntry* to) in HeapGraphEdge() 205 HeapGraphEdge::HeapGraphEdge(Type type, int index, HeapEntry* from, in HeapGraphEdge() 206 HeapEntry* to) in HeapGraphEdge() 214 HeapEntry::HeapEntry(HeapSnapshot* snapshot, int index, Type type, in HeapEntry() function in v8::internal::HeapEntry 228 void HeapEntry::VerifyReference(HeapGraphEdge::Type type, HeapEntry* entry, in VerifyReference() 277 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, const char* name, in SetNamedReference() 278 HeapEntry* entr in SetNamedReference() [all...] |
H A D | heap-snapshot-generator-inl.h | 16 HeapEntry* HeapGraphEdge::from() const { in from() 26 int HeapEntry::set_children_index(int index) { in set_children_index() 33 void HeapEntry::add_child(HeapGraphEdge* edge) { in add_child() 37 HeapGraphEdge* HeapEntry::child(int i) { return children_begin()[i]; } in child() 39 std::vector<HeapGraphEdge*>::iterator HeapEntry::children_begin() const { in children_begin() 44 std::vector<HeapGraphEdge*>::iterator HeapEntry::children_end() const { in children_end() 49 int HeapEntry::children_count() const { in children_count() 53 Isolate* HeapEntry::isolate() const { return snapshot_->profiler()->isolate(); } in isolate() 62 int HeapSnapshotJSONSerializer::to_node_index(const HeapEntry* e) { in to_node_index()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 10133 const i::HeapEntry* from = ToInternal(this)->from(); in GetFromNode() 10138 const i::HeapEntry* to = ToInternal(this)->to(); in GetToNode() 10142 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) { in ToInternal() 10143 return const_cast<i::HeapEntry*>( in ToInternal() 10144 reinterpret_cast<const i::HeapEntry*>(entry)); in ToInternal()
|
Completed in 25 milliseconds