Home
last modified time | relevance | path

Searched refs:HeapEntry (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/profiler/
Dheap-snapshot-generator.h35 class HeapEntry; variable
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_;
105 class HeapEntry {
124 HeapEntry(HeapSnapshot* snapshot, int index, Type type, const char* name,
161 void VerifyReference(HeapGraphEdge::Type type, HeapEntry* entry,
165 HeapEntry* entry, HeapSnapshotGenerator* generator,
[all …]
Dheap-snapshot-generator.cc191 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, HeapEntry* from, in HeapGraphEdge()
192 HeapEntry* to) in HeapGraphEdge()
204 HeapGraphEdge::HeapGraphEdge(Type type, int index, HeapEntry* from, in HeapGraphEdge()
205 HeapEntry* to) in HeapGraphEdge()
213 HeapEntry::HeapEntry(HeapSnapshot* snapshot, int index, Type type, in HeapEntry() function in v8::internal::HeapEntry
227 void HeapEntry::VerifyReference(HeapGraphEdge::Type type, HeapEntry* entry, in VerifyReference()
276 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, const char* name, in SetNamedReference()
277 HeapEntry* entry, in SetNamedReference()
285 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type, int index, in SetIndexedReference()
286 HeapEntry* entry, in SetIndexedReference()
[all …]
Dheap-snapshot-generator-inl.h16 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/
Dapi.cc10099 const i::HeapEntry* from = ToInternal(this)->from(); in GetFromNode()
10104 const i::HeapEntry* to = ToInternal(this)->to(); in GetToNode()
10108 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) { in ToInternal()
10109 return const_cast<i::HeapEntry*>( in ToInternal()
10110 reinterpret_cast<const i::HeapEntry*>(entry)); in ToInternal()