Home
last modified time | relevance | path

Searched refs:trackAllocations (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorHeapProfilerAgent.cpp146 …id InspectorHeapProfilerAgent::startTrackingHeapObjects(ErrorString*, const bool* trackAllocations) in startTrackingHeapObjects() argument
149 bool allocationTrackingEnabled = trackAllocations && *trackAllocations; in startTrackingHeapObjects()
184 void InspectorHeapProfilerAgent::startTrackingHeapObjectsInternal(bool trackAllocations) in startTrackingHeapObjectsInternal() argument
188 ScriptProfiler::startTrackingHeapObjects(trackAllocations); in startTrackingHeapObjectsInternal()
DInspectorHeapProfilerAgent.h61 virtual void startTrackingHeapObjects(ErrorString*, const bool* trackAllocations) OVERRIDE;
82 void startTrackingHeapObjectsInternal(bool trackAllocations);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DScriptProfiler.h75 static void startTrackingHeapObjects(bool trackAllocations);
DScriptProfiler.cpp182 void ScriptProfiler::startTrackingHeapObjects(bool trackAllocations) in startTrackingHeapObjects() argument
184 v8::Isolate::GetCurrent()->GetHeapProfiler()->StartTrackingHeapObjects(trackAllocations); in startTrackingHeapObjects()