HomeSort by relevance Sort by last modified time
    Searched refs:HeapEntry (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/v8/src/
heap-snapshot-generator-inl.h 37 HeapEntry* HeapGraphEdge::from() const {
47 int HeapEntry::index() const {
52 int HeapEntry::set_children_index(int index) {
60 HeapGraphEdge** HeapEntry::children_arr() {
heap-snapshot-generator.h 36 class HeapEntry;
68 INLINE(HeapEntry* from() const);
69 HeapEntry* to() const { return to_entry_; }
80 HeapEntry* to_entry_;
89 // HeapEntry instances represent an entity from the heap (or a special
91 class HeapEntry BASE_EMBEDDED {
107 HeapEntry() { }
108 HeapEntry(HeapSnapshot* snapshot,
130 HeapGraphEdge::Type type, int index, HeapEntry* entry);
132 HeapGraphEdge::Type type, const char* name, HeapEntry* entry)
    [all...]
heap-snapshot-generator.cc 66 const int HeapEntry::kNoEntry = -1;
68 HeapEntry::HeapEntry(HeapSnapshot* snapshot,
82 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type,
84 HeapEntry* entry) {
91 void HeapEntry::SetIndexedReference(HeapGraphEdge::Type type,
93 HeapEntry* entry) {
100 Handle<HeapObject> HeapEntry::GetHeapObject() {
105 void HeapEntry::Print(
166 const char* HeapEntry::TypeAsString()
    [all...]
api.cc     [all...]
  /external/v8/src/
profile-generator.h 450 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_EMBEDDED
    [all...]
profile-generator.cc 934 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* entry
    [all...]
api.cc     [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 21 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...]
  /external/chromium_org/v8/test/cctest/
test-heap-profiler.cc 50 void CheckEntry(i::HeapEntry* entry) {
60 void CheckAllReachables(i::HeapEntry* root) {
62 i::List<i::HeapEntry*> list(10);
66 i::HeapEntry* entry = list.RemoveLast();
70 i::HeapEntry* child = children[i]->to();
98 CHECK_EQ(0, strncmp("Object", const_cast<i::HeapEntry*>(
99 reinterpret_cast<const i::HeapEntry*>(global_obj))->name(), 6));
152 i::List<i::HeapEntry>& entries = heap_snapshot->entries();
195 det.CheckAllReachables(const_cast<i::HeapEntry*>(
196 reinterpret_cast<const i::HeapEntry*>(global_env2)))
    [all...]

Completed in 161 milliseconds