Searched refs:totalHeapSize (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DScriptGCEvent.cpp45 void ScriptGCEvent::getHeapSize(size_t& usedHeapSize, size_t& totalHeapSize, size_t& heapSizeLimit) argument
48 totalHeapSize = globalData->heap.capacity();
H A DScriptGCEvent.h45 static void getHeapSize(size_t& usedHeapSize, size_t& totalHeapSize, size_t& heapSizeLimit);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptGCEvent.cpp69 void ScriptGCEvent::getHeapSize(size_t& usedHeapSize, size_t& totalHeapSize, size_t& heapSizeLimit) argument
74 totalHeapSize = heapStatistics.total_heap_size();
/external/webkit/Source/WebCore/inspector/
H A DInspectorTimelineAgent.cpp372 size_t totalHeapSize = 0; local
374 ScriptGCEvent::getHeapSize(usedHeapSize, totalHeapSize, heapSizeLimit);
376 record->setNumber("totalHeapSize", totalHeapSize);
/external/webkit/Source/WebCore/inspector/front-end/
H A DTimelineOverviewPane.js535 if (r.totalHeapSize && r.totalHeapSize > maxTotalHeapSize)
536 maxTotalHeapSize = r.totalHeapSize;
H A DTimelinePanel.js877 this.totalHeapSize = record.totalHeapSize;
1007 contentHelper._appendTextRow(WebInspector.UIString("Used Heap Size"), WebInspector.UIString("%s of %s", Number.bytesToString(this.usedHeapSize), Number.bytesToString(this.totalHeapSize)));

Completed in 142 milliseconds