Searched refs:HeapEntry (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/profiler/ |
D | heap-snapshot-generator.h | 27 class HeapEntry; variable 72 V8_INLINE HeapEntry* from() const; 73 HeapEntry* to() const { return to_entry_; } in to() 88 HeapEntry* to_entry_; 99 class HeapEntry BASE_EMBEDDED { 119 HeapEntry() { } in HeapEntry() function 120 HeapEntry(HeapSnapshot* snapshot, 143 HeapGraphEdge::Type type, int index, HeapEntry* entry); 145 HeapGraphEdge::Type type, const char* name, HeapEntry* entry); 178 HeapEntry* root() { return &entries_[root_index_]; } in root() [all …]
|
D | heap-snapshot-generator-inl.h | 17 HeapEntry* HeapGraphEdge::from() const { in from() 32 int HeapEntry::index() const { in index() 37 int HeapEntry::set_children_index(int index) { in set_children_index() 44 void HeapEntry::add_child(HeapGraphEdge* edge) { in add_child() 48 HeapGraphEdge* HeapEntry::child(int i) { return *(children_begin() + i); } in child() 50 std::deque<HeapGraphEdge*>::iterator HeapEntry::children_begin() { in children_begin() 59 std::deque<HeapGraphEdge*>::iterator HeapEntry::children_end() { in children_end() 63 Isolate* HeapEntry::isolate() const { return snapshot_->profiler()->isolate(); } in isolate() 72 int HeapSnapshotJSONSerializer::to_node_index(const HeapEntry* e) { in to_node_index()
|
D | heap-snapshot-generator.cc | 62 const int HeapEntry::kNoEntry = -1; 64 HeapEntry::HeapEntry(HeapSnapshot* snapshot, in HeapEntry() function in v8::internal::HeapEntry 80 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, in SetNamedReference() 82 HeapEntry* entry) { in SetNamedReference() 89 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type, in SetIndexedReference() 91 HeapEntry* entry) { in SetIndexedReference() 98 void HeapEntry::Print( in Print() 158 const char* HeapEntry::TypeAsString() { in TypeAsString() 182 root_index_(HeapEntry::kNoEntry), in HeapSnapshot() 183 gc_roots_index_(HeapEntry::kNoEntry), in HeapSnapshot() [all …]
|
/external/v8/src/ |
D | api.cc | 10260 const i::HeapEntry* from = ToInternal(this)->from(); in GetFromNode() 10266 const i::HeapEntry* to = ToInternal(this)->to(); in GetToNode() 10271 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) { in ToInternal() 10272 return const_cast<i::HeapEntry*>( in ToInternal() 10273 reinterpret_cast<const i::HeapEntry*>(entry)); in ToInternal()
|