Searched refs:HeapStats (Results 1 – 17 of 17) sorted by relevance
/external/chromium_org/tools/android/heap_profiler/ |
D | heap_profiler_integrationtest.cc | 59 const HeapStats* GetHeapStats() { in GetHeapStats() 60 HeapStats* const* stats_ptr = reinterpret_cast<HeapStats* const*>( in GetHeapStats() 63 const HeapStats* stats = *stats_ptr; in GetHeapStats() 84 const HeapStats* stats = GetHeapStats(); in LookupStackTrace() 101 const HeapStats* stats = GetHeapStats(); in TestStackTracesWithParams()
|
D | heap_profiler.h | 64 } HeapStats; typedef 68 void heap_profiler_init(HeapStats* heap_stats);
|
D | heap_profiler_hooks_android.c | 46 HEAP_PROFILER_EXPORT const HeapStats* heap_profiler_stats_for_tests; 76 HeapStats* stats = (HeapStats*) real_mmap( in initialize() 77 0, sizeof(HeapStats), PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0); in initialize()
|
D | heap_profiler.c | 68 static HeapStats* stats; 369 void heap_profiler_init(HeapStats* heap_stats) { in heap_profiler_init() 374 memset(stats, 0, sizeof(HeapStats)); in heap_profiler_init()
|
D | heap_dump.c | 60 HeapStats stats; in dump_process_heap()
|
D | heap_profiler_unittest.cc | 85 HeapStats stats_;
|
/external/chromium_org/third_party/WebKit/Source/platform/heap/ |
D | ThreadState.h | 218 class HeapStats { 220 HeapStats() : m_totalObjectSpace(0), m_totalAllocatedSpace(0) { } 225 void add(HeapStats* other) 257 bool operator==(const HeapStats& other) 623 void getStats(HeapStats&); 624 HeapStats& stats() { return m_stats; } 625 HeapStats& statsAfterLastGC() { return m_statsAfterLastGC; } 707 HeapStats m_stats; 708 HeapStats m_statsAfterLastGC;
|
D | ThreadState.cpp | 923 void ThreadState::getStats(HeapStats& stats) in getStats() 928 HeapStats scannedStats; in getStats() 1061 SweepNonFinalizedHeapTask(ThreadState* state, BaseHeap* heap, HeapStats* stats) in SweepNonFinalizedHeapTask() 1079 HeapStats* m_stats; 1141 HeapStats heapStatsVector[NumberOfNonFinalizedHeaps]; in performPendingSweep() 1156 HeapStats* stats = &heapStatsVector[i]; in performPendingSweep() 1166 HeapStats stats; in performPendingSweep() 1176 HeapStats stats; in performPendingSweep()
|
D | HeapTest.cpp | 227 static void getHeapStats(HeapStats* stats) in getHeapStats() 374 static void clearOutOldGarbage(HeapStats* heapStats) in clearOutOldGarbage() 1482 HeapStats heapStats; in TEST() 1624 HeapStats initialHeapStats; in TEST() 1630 HeapStats statsAfterAllocation; in TEST() 1803 HeapStats initialHeapSize; in TEST() 1818 HeapStats afterSetWasCreated; in TEST() 1823 HeapStats afterGC; in TEST() 1834 HeapStats afterOneAdd; in TEST() 1852 HeapStats afterAddAndGC; in TEST() [all …]
|
D | Heap.h | 107 class HeapStats; variable 255 void getStats(HeapStats&); 526 void getStats(HeapStats&); 528 void sweep(HeapStats*, ThreadHeap<Header>*); 810 virtual void sweep(HeapStats*) = 0; 821 virtual void getScannedStats(HeapStats&) = 0; 862 virtual void sweep(HeapStats*); 873 virtual void getScannedStats(HeapStats&); 877 HeapStats& stats() { return m_threadState->stats(); } in stats() 927 void sweepNormalPages(HeapStats*); [all …]
|
D | Heap.cpp | 1237 void ThreadHeap<Header>::getScannedStats(HeapStats& scannedStats) in getScannedStats() 1248 void ThreadHeap<Header>::sweepNormalPages(HeapStats* stats) in sweepNormalPages() 1273 void ThreadHeap<Header>::sweepLargePages(HeapStats* stats) in sweepLargePages() 1301 void ThreadHeap<Header>::sweep(HeapStats* stats) in sweep() 1423 void HeapPage<Header>::getStats(HeapStats& stats) in getStats() 1446 void HeapPage<Header>::sweep(HeapStats* stats, ThreadHeap<Header>* heap) in sweep() 1721 void LargeHeapObject<Header>::getStats(HeapStats& stats) in getStats() 2656 void Heap::getStats(HeapStats* stats) in getStats() 2663 HeapStats temp; in getStats()
|
/external/chromium_org/v8/tools/oom_dump/ |
D | oom_dump.cc | 150 if (value2 == v8::internal::HeapStats::kStartMarker) { in DumpHeapStats() 163 CHECK(READ_FIELD(0) == v8::internal::HeapStats::kStartMarker); in DumpHeapStats() 164 CHECK(READ_FIELD(24) == v8::internal::HeapStats::kEndMarker); in DumpHeapStats()
|
/external/chromium_org/v8/src/ |
D | global-handles.h | 18 class HeapStats; variable 125 void RecordStats(HeapStats* stats);
|
D | global-handles.cc | 755 void GlobalHandles::RecordStats(HeapStats* stats) { in RecordStats()
|
D | api.cc | 108 i::HeapStats heap_stats; in FatalProcessOutOfMemory()
|
/external/chromium_org/v8/src/heap/ |
D | heap.h | 341 class HeapStats; variable 1101 void RecordStats(HeapStats* stats, bool take_snapshot = false); 2043 class HeapStats {
|
D | heap.cc | 4929 void Heap::RecordStats(HeapStats* stats, bool take_snapshot) { in RecordStats() 4930 *stats->start_marker = HeapStats::kStartMarker; in RecordStats() 4931 *stats->end_marker = HeapStats::kEndMarker; in RecordStats()
|