Searched refs:totalHeapSize (Results 1 - 6 of 6) sorted by relevance
/external/webkit/Source/WebCore/bindings/js/ |
H A D | ScriptGCEvent.cpp | 45 void ScriptGCEvent::getHeapSize(size_t& usedHeapSize, size_t& totalHeapSize, size_t& heapSizeLimit) argument 48 totalHeapSize = globalData->heap.capacity();
|
H A D | ScriptGCEvent.h | 45 static void getHeapSize(size_t& usedHeapSize, size_t& totalHeapSize, size_t& heapSizeLimit);
|
/external/webkit/Source/WebCore/bindings/v8/ |
H A D | ScriptGCEvent.cpp | 69 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 D | InspectorTimelineAgent.cpp | 372 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 D | TimelineOverviewPane.js | 535 if (r.totalHeapSize && r.totalHeapSize > maxTotalHeapSize) 536 maxTotalHeapSize = r.totalHeapSize;
|
H A D | TimelinePanel.js | 877 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 135 milliseconds