Home
last modified time | relevance | path

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

/external/v8/src/profiler/
Dheap-snapshot-generator.h21 class HeapEntry; variable
53 INLINE(HeapEntry* from() const);
54 HeapEntry* to() const { return to_entry_; } in to()
69 HeapEntry* to_entry_;
80 class HeapEntry BASE_EMBEDDED {
99 HeapEntry() { } in HeapEntry() function
100 HeapEntry(HeapSnapshot* snapshot,
124 HeapGraphEdge::Type type, int index, HeapEntry* entry);
126 HeapGraphEdge::Type type, const char* name, HeapEntry* entry);
160 HeapEntry* root() { return &entries_[root_index_]; } in root()
[all …]
Dheap-snapshot-generator-inl.h14 HeapEntry* HeapGraphEdge::from() const { in from()
29 int HeapEntry::index() const { in index()
34 int HeapEntry::set_children_index(int index) { in set_children_index()
41 std::deque<HeapGraphEdge*>::iterator HeapEntry::children_begin() { in children_begin()
50 std::deque<HeapGraphEdge*>::iterator HeapEntry::children_end() { in children_end()
55 Isolate* HeapEntry::isolate() const { return snapshot_->profiler()->isolate(); } in isolate()
Dheap-snapshot-generator.cc51 const int HeapEntry::kNoEntry = -1;
53 HeapEntry::HeapEntry(HeapSnapshot* snapshot, in HeapEntry() function in v8::internal::HeapEntry
69 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, in SetNamedReference()
71 HeapEntry* entry) { in SetNamedReference()
78 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type, in SetIndexedReference()
80 HeapEntry* entry) { in SetIndexedReference()
87 void HeapEntry::Print( in Print()
147 const char* HeapEntry::TypeAsString() { in TypeAsString()
188 root_index_(HeapEntry::kNoEntry), in HeapSnapshot()
189 gc_roots_index_(HeapEntry::kNoEntry), in HeapSnapshot()
[all …]
/external/v8/src/
Dapi.cc9822 const i::HeapEntry* from = ToInternal(this)->from(); in GetFromNode()
9828 const i::HeapEntry* to = ToInternal(this)->to(); in GetToNode()
9833 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) { in ToInternal()
9834 return const_cast<i::HeapEntry*>( in ToInternal()
9835 reinterpret_cast<const i::HeapEntry*>(entry)); in ToInternal()