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

  /external/chromium_org/tools/android/heap_profiler/
heap_profiler.h 64 } HeapStats;
66 // Initialize the heap_profiler. The caller has to allocate the HeapStats
68 void heap_profiler_init(HeapStats* heap_stats);
83 // Cleans up the HeapStats and all the internal data structures.
heap_profiler_integrationtest.cc 59 const HeapStats* GetHeapStats() {
60 HeapStats* const* stats_ptr = reinterpret_cast<HeapStats* const*>(
63 const HeapStats* stats = *stats_ptr;
84 const HeapStats* stats = GetHeapStats();
101 const HeapStats* stats = GetHeapStats();
heap_profiler_hooks_android.c 46 HEAP_PROFILER_EXPORT const HeapStats* heap_profiler_stats_for_tests;
68 // Allocate room for the HeapStats area and initialize the heap profiler.
76 HeapStats* stats = (HeapStats*) real_mmap(
77 0, sizeof(HeapStats), PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
heap_profiler.c 14 // void heap_profiler_init(HeapStats*);
68 static HeapStats* stats;
369 void heap_profiler_init(HeapStats* heap_stats) {
374 memset(stats, 0, sizeof(HeapStats));
heap_dump.c 60 HeapStats stats;
67 // Look for the mmap which contains the HeapStats in the target process vmem.
104 fprintf(stderr, "Could not find the HeapStats area. "
heap_profiler_unittest.cc 85 HeapStats stats_;
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.h 214 // A HeapStats structure keeps track of the amount of memory allocated
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
    [all...]
ThreadState.cpp 923 void ThreadState::getStats(HeapStats& stats)
928 HeapStats scannedStats;
    [all...]
HeapTest.cpp 227 static void getHeapStats(HeapStats* stats)
374 static void clearOutOldGarbage(HeapStats* heapStats)
377 getHeapStats(heapStats);
378 size_t used = heapStats->totalObjectSpace();
380 getHeapStats(heapStats);
381 if (heapStats->totalObjectSpace() >= used)
    [all...]
Heap.h 107 class HeapStats;
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(); }
927 void sweepNormalPages(HeapStats*);
    [all...]
Heap.cpp     [all...]
  /external/chromium_org/v8/tools/oom_dump/
oom_dump.cc 150 if (value2 == v8::internal::HeapStats::kStartMarker) {
163 CHECK(READ_FIELD(0) == v8::internal::HeapStats::kStartMarker);
164 CHECK(READ_FIELD(24) == v8::internal::HeapStats::kEndMarker);
  /external/chromium_org/v8/src/
global-handles.h 18 class HeapStats;
125 void RecordStats(HeapStats* stats);
global-handles.cc 755 void GlobalHandles::RecordStats(HeapStats* stats) {
api.cc 108 i::HeapStats heap_stats;
    [all...]
  /external/chromium_org/v8/src/heap/
heap.h 341 class HeapStats;
    [all...]
heap.cc     [all...]

Completed in 2467 milliseconds