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

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptGCEvent.cpp 74 v8::HeapStatistics heapStatistics;
75 v8::Isolate::GetCurrent()->GetHeapStatistics(&heapStatistics);
76 info.usedJSHeapSize = heapStatistics.used_heap_size();
77 info.totalJSHeapSize = heapStatistics.total_physical_size();
78 info.jsHeapSizeLimit = heapStatistics.heap_size_limit();
83 v8::HeapStatistics heapStatistics;
84 v8::Isolate::GetCurrent()->GetHeapStatistics(&heapStatistics);
85 return heapStatistics.used_heap_size()
    [all...]
V8GCController.cpp 328 v8::HeapStatistics heapStatistics;
329 isolate->GetHeapStatistics(&heapStatistics);
330 return heapStatistics.used_heap_size();

Completed in 791 milliseconds