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

/external/v8/src/
H A Dprofile-generator.h450 class HeapEntry;
465 void Init(int child_index, Type type, const char* name, HeapEntry* to);
466 void Init(int child_index, Type type, int index, HeapEntry* to);
467 void Init(int child_index, int index, HeapEntry* to);
481 HeapEntry* to() { return to_; }
483 HeapEntry* From();
492 HeapEntry* to_;
500 // HeapEntry instances represent an entity from the heap (or a special
505 // HeapEntry
519 class HeapEntry BASE_EMBEDDE
534 HeapEntry() { } function in class:v8::internal::BASE_EMBEDDED
[all...]
H A Dprofile-generator.cc934 int child_index, Type type, const char* name, HeapEntry* to) {
946 void HeapGraphEdge::Init(int child_index, Type type, int index, HeapEntry* to) {
955 void HeapGraphEdge::Init(int child_index, int index, HeapEntry* to) {
960 HeapEntry* HeapGraphEdge::From() {
961 return reinterpret_cast<HeapEntry*>(this - child_index_) - 1;
965 void HeapEntry::Init(HeapSnapshot* snapshot,
985 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type,
988 HeapEntry* entry,
995 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type,
998 HeapEntry* entr
[all...]
H A Dapi.cc5991 const i::HeapEntry* from = ToInternal(this)->From();
5999 const i::HeapEntry* to = ToInternal(this)->to();
6004 static i::HeapEntry* ToInternal(const HeapGraphNode* entry) {
6005 return const_cast<i::HeapEntry*>(
6006 reinterpret_cast<const i::HeapEntry*>(entry));
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc21 void CheckEntry(i::HeapEntry* entry) {
27 void CheckAllReachables(i::HeapEntry* root) {
28 i::List<i::HeapEntry*> list(10);
33 i::HeapEntry* entry = list.RemoveLast();
37 i::HeapEntry* child = children[i].to();
60 CHECK_EQ(0, strncmp("Object", const_cast<i::HeapEntry*>(
61 reinterpret_cast<const i::HeapEntry*>(global_obj))->name(), 6));
123 det.CheckAllReachables(const_cast<i::HeapEntry*>(
124 reinterpret_cast<const i::HeapEntry*>(global_env2)));
841 const_cast<i::HeapEntry*>(
[all...]

Completed in 354 milliseconds