Searched refs:heap_stats (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler.h68 void heap_profiler_init(HeapStats* heap_stats);
H A Dheap_profiler.c369 void heap_profiler_init(HeapStats* heap_stats) { argument
373 stats = heap_stats;
/external/chromium_org/chrome/renderer/
H A Dchrome_render_process_observer.cc181 v8::HeapStatistics heap_stats; local
182 v8::Isolate::GetCurrent()->GetHeapStatistics(&heap_stats);
183 total_bytes_ = heap_stats.total_heap_size();
184 used_bytes_ = heap_stats.used_heap_size();
214 v8::HeapStatistics heap_stats; local
215 isolate->GetHeapStatistics(&heap_stats);
216 total_bytes = heap_stats.total_heap_size();
217 used_bytes = heap_stats.used_heap_size();
/external/chromium_org/v8/src/
H A Dapi.cc108 i::HeapStats heap_stats; local
110 heap_stats.start_marker = &start_marker;
112 heap_stats.new_space_size = &new_space_size;
114 heap_stats.new_space_capacity = &new_space_capacity;
116 heap_stats.old_pointer_space_size = &old_pointer_space_size;
118 heap_stats.old_pointer_space_capacity = &old_pointer_space_capacity;
120 heap_stats.old_data_space_size = &old_data_space_size;
122 heap_stats.old_data_space_capacity = &old_data_space_capacity;
124 heap_stats.code_space_size = &code_space_size;
126 heap_stats
[all...]
H A Dflag-definitions.h740 DEFINE_BOOL(heap_stats, false, "report heap statistics before and after GC")
765 "report heap spill statistics along with heap_stats "
766 "(requires heap_stats)")

Completed in 1215 milliseconds