HomeSort by relevance Sort by last modified time
    Searched refs:StartProfiling (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/v8/test/cctest/
profiler-extension.h 44 static void StartProfiling(const v8::FunctionCallbackInfo<v8::Value>& args);
profiler-extension.cc 39 "native function startProfiling();"
44 if (name->Equals(v8::String::NewFromUtf8(isolate, "startProfiling"))) {
46 ProfilerExtension::StartProfiling);
57 void ProfilerExtension::StartProfiling(
61 cpu_profiler->StartProfiling((args.Length() > 0)
test-cpu-profiler.cc 143 profiles->StartProfiling("", false);
204 profiles->StartProfiling("", false);
255 profiler->StartProfiling("1");
257 profiler->StartProfiling("1");
273 profiles->StartProfiling("", false);
314 profiler->StartProfiling("1");
319 profiler->StartProfiling("1");
320 profiler->StartProfiling("2");
328 profiler->StartProfiling("1");
329 profiler->StartProfiling("2")
    [all...]
test-profile-generator.cc 405 profiles.StartProfiling("", false);
471 profiles.StartProfiling("", true);
519 profiles.StartProfiling("", false);
563 "function c() { startProfiling(); }\n"
580 // startProfiling
593 current = PickChild(current, "startProfiling");
606 CHECK(collection.StartProfiling(title.start(), false));
609 CHECK(!collection.StartProfiling("maximum", false));
639 env->GetIsolate(), "function a() { startProfiling(); }\n"));
658 // startProfiling
    [all...]
  /external/chromium_org/base/debug/
profiler.h 23 BASE_EXPORT void StartProfiling(const std::string& name);
trace_event_system_stats_monitor.h 51 void StartProfiling();
trace_event_system_stats_monitor_unittest.cc 50 system_stats_monitor->StartProfiling();
trace_event_system_stats_monitor.cc 81 base::Bind(&TraceEventSystemStatsMonitor::StartProfiling,
92 void TraceEventSystemStatsMonitor::StartProfiling() {
profiler.cc 30 void StartProfiling(const std::string& name) {
59 void StartProfiling(const std::string& name) {
trace_event_memory.h 54 void StartProfiling();
trace_event_memory.cc 179 base::Bind(&TraceMemoryController::StartProfiling,
194 void TraceMemoryController::StartProfiling() {
trace_event_memory_unittest.cc 57 controller->StartProfiling();
  /external/chromium_org/tools/perf/measurements/
loading_profile.py 30 tab.browser.StartProfiling(perf_profiler.PerfProfiler.name(),
  /external/chromium_org/tools/perf/
record_android_profile.py 23 browser.StartProfiling(options.profiler, output_file)
  /external/chromium_org/v8/src/
cpu-profiler.h 204 void StartProfiling(const char* title, bool record_samples = false);
205 void StartProfiling(String* title, bool record_samples);
cpu-profiler.cc 417 void CpuProfiler::StartProfiling(const char* title, bool record_samples) {
418 if (profiles_->StartProfiling(title, record_samples)) {
424 void CpuProfiler::StartProfiling(String* title, bool record_samples) {
425 StartProfiling(profiles_->GetName(title), record_samples);
profile-generator.h 260 bool StartProfiling(const char* title, bool record_samples);
profile-generator.cc 467 bool CpuProfilesCollection::StartProfiling(const char* title,
api.cc     [all...]
  /external/chromium_org/chrome/common/
profiling.cc 172 base::debug::StartProfiling(GetProfileName());
  /external/chromium_org/v8/include/
v8-profiler.h 149 void StartProfiling(Handle<String> title, bool record_samples = false);
151 /** Deprecated. Use StartProfiling instead. */
152 V8_DEPRECATED("Use StartProfiling",
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner.py 129 def StartProfiling(self, page, finder_options):
137 self.browser.StartProfiling(finder_options.profiler, output_file)
265 state.StartProfiling(page, finder_options)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptProfiler.cpp 72 profiler->StartProfiling(v8String(isolate, title), true);
  /external/chromium_org/tools/telemetry/telemetry/core/
browser.py 248 def StartProfiling(self, profiler_name, base_output_file):
  /external/chromium_org/media/cast/test/
cast_benchmarks.cc 765 base::debug::StartProfiling(profile_file);

Completed in 967 milliseconds

1 2