Searched defs:profiler (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/tools/profile_chrome/
H A Dcontrollers_unittest.py7 from profile_chrome import profiler namespace
18 self.package_info = profiler.GetSupportedBrowsers()[self.browser]
H A Dprofiler_unittest.py10 from profile_chrome import profiler namespace
44 result = profiler.CaptureProfile([controller], interval)
57 result = profiler.CaptureProfile([controller], 1, write_json=True)
68 result = profiler.CaptureProfile(controllers, 1, write_json=True)
H A Dmain.py15 from profile_chrome import profiler namespace
149 browsers = sorted(profiler.GetSupportedBrowsers().keys())
180 package_info = profiler.GetSupportedBrowsers()[options.browser]
249 result = profiler.CaptureProfile(
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dnetlog_profiler.py7 from telemetry.core.platform import profiler namespace
10 class NetLogProfiler(profiler.Profiler):
H A Dprofiler_finder.py9 from telemetry.core.platform import profiler namespace
15 profiler.Profiler,
H A Dandroid_screen_recorder_profiler.py10 from telemetry.core.platform import profiler namespace
13 class AndroidScreenRecordingProfiler(profiler.Profiler):
H A Dtrace_profiler.py7 from telemetry.core.platform import profiler namespace
11 class TraceProfiler(profiler.Profiler):
H A Dv8_profiler.py8 from telemetry.core.platform import profiler namespace
11 class V8Profiler(profiler.Profiler):
H A Dandroid_systrace_profiler.py12 from telemetry.core.platform import profiler namespace
23 class AndroidSystraceProfiler(profiler.Profiler):
H A Dandroid_traceview_profiler.py9 from telemetry.core.platform import profiler namespace
12 class AndroidTraceviewProfiler(profiler.Profiler):
H A Dmonsoon_profiler.py16 from telemetry.core.platform import profiler namespace
17 from telemetry.core.platform.profiler import monsoon
67 class MonsoonProfiler(profiler.Profiler):
H A Dsample_profiler.py12 from telemetry.core.platform import profiler namespace
58 class SampleProfiler(profiler.Profiler):
H A Dvtune_profiler.py11 from telemetry.core.platform import profiler namespace
12 from telemetry.core.platform.profiler import android_profiling_helper
85 class VTuneProfiler(profiler.Profiler):
H A Dwin_pgo_profiler.py10 from telemetry.core.platform import profiler namespace
15 class WinPGOProfiler(profiler.Profiler):
16 """A profiler that run the Visual Studio PGO utility 'pgosweep.exe' before
77 # This profiler only make sense when doing a Windows build with Visual
H A Diprofiler_profiler.py11 from telemetry.core.platform import profiler namespace
67 class IprofilerProfiler(profiler.Profiler):
H A Djava_heap_profiler.py11 from telemetry.core.platform import profiler namespace
20 class JavaHeapProfiler(profiler.Profiler):
H A Doomkiller_profiler.py9 from telemetry.core.platform import profiler namespace
26 class OOMKillerProfiler(profiler.Profiler):
H A Dtcmalloc_heap_profiler.py10 from telemetry.core.platform import profiler namespace
36 # This profiler requires adb root to set properties.
95 class TCMallocHeapProfiler(profiler.Profiler):
96 """A Factory to instantiate the platform-specific profiler."""
H A Dtcpdump_profiler.py11 from telemetry.core.platform import profiler namespace
12 from telemetry.core.platform.profiler import android_prebuilt_profiler_helper
20 This profiler uses pre-built binaries from AOSP.
95 class TCPDumpProfiler(profiler.Profiler):
96 """A Factory to instantiate the platform-specific profiler."""
H A Dstrace_profiler.py13 from telemetry.core.platform import profiler namespace
199 class StraceProfiler(profiler.Profiler):
H A Dperf_profiler.py17 from telemetry.core.platform import profiler namespace
18 from telemetry.core.platform.profiler import android_profiling_helper
67 On android, this profiler uses pre-built binaries from AOSP.
163 class PerfProfiler(profiler.Profiler):
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DListenerLeakTest.cpp39 #include <v8/include/v8-profiler.h>
63 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
64 const v8::HeapSnapshot* snapshot = profiler->TakeHeapSnapshot(v8::String::NewFromUtf8(isolate, ""));
/external/chromium_org/content/browser/android/
H A Dtracing_controller_android.cc18 TracingControllerAndroid* profiler = new TracingControllerAndroid(env, obj); local
19 return reinterpret_cast<intptr_t>(profiler);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptProfiler.cpp44 #include <v8-profiler.h>
54 v8::CpuProfiler* profiler = isolate->GetCpuProfiler(); local
55 if (profiler)
56 profiler->SetSamplingInterval(intervalUs);
67 v8::CpuProfiler* profiler = isolate->GetCpuProfiler(); local
68 if (!profiler)
71 profiler->StartProfiling(v8String(isolate, title), true);
77 v8::CpuProfiler* profiler = isolate->GetCpuProfiler(); local
78 if (!profiler)
81 v8::CpuProfile* profile = profiler
105 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
128 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
136 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
234 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
257 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
[all...]
H A DV8GCController.cpp297 v8::HeapProfiler* profiler = m_isolate->GetHeapProfiler(); local
301 profiler->SetRetainedObjectInfo(v8::UniqueId(reinterpret_cast<intptr_t>(root)), new RetainedDOMInfo(root));

Completed in 1288 milliseconds

12