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

  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 175 v8::HeapStatistics heap_stats; local
176 v8::Isolate::GetCurrent()->GetHeapStatistics(&heap_stats);
177 total_bytes_ = heap_stats.total_heap_size();
178 used_bytes_ = heap_stats.used_heap_size();
208 v8::HeapStatistics heap_stats; local
209 isolate->GetHeapStatistics(&heap_stats);
210 total_bytes = heap_stats.total_heap_size();
211 used_bytes = heap_stats.used_heap_size();
  /external/chromium_org/v8/src/
api.cc 108 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.code_space_capacity = &code_space_capacity
    [all...]
flag-definitions.h     [all...]

Completed in 255 milliseconds