/external/chromium/base/debug/ |
profiler.cc | 23 void StartProfiling(const std::string& name) { 48 void StartProfiling(const std::string& name) {
|
profiler.h | 21 void StartProfiling(const std::string& name);
|
/external/v8/test/cctest/ |
test-cpu-profiler.cc | 82 profiles.StartProfiling("", 1); 143 profiles.StartProfiling("", 1); 220 CpuProfiler::StartProfiling("1"); 222 CpuProfiler::StartProfiling("1"); 233 profiles.StartProfiling("", 1); 276 CpuProfiler::StartProfiling("1"); 281 CpuProfiler::StartProfiling("1"); 282 CpuProfiler::StartProfiling("2"); 290 CpuProfiler::StartProfiling("1"); 291 CpuProfiler::StartProfiling("2") [all...] |
test-profile-generator.cc | 585 profiles.StartProfiling("", 1); 698 static v8::Handle<v8::Value> StartProfiling(const v8::Arguments& args); 706 "native function startProfiling();" 711 if (name->Equals(v8::String::New("startProfiling"))) { 712 return v8::FunctionTemplate::New(ProfilerExtension::StartProfiling); 722 v8::Handle<v8::Value> ProfilerExtension::StartProfiling( 725 v8::CpuProfiler::StartProfiling(args[0].As<v8::String>()); 727 v8::CpuProfiler::StartProfiling(v8::String::New("")); 772 "function c() { startProfiling(); }\n" 790 // startProfiling [all...] |
/external/chromium_org/base/debug/ |
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() {
|
trace_event_system_stats_monitor.h | 51 void StartProfiling();
|
profiler.cc | 30 void StartProfiling(const std::string& name) { 59 void StartProfiling(const std::string& name) {
|
profiler.h | 23 BASE_EXPORT void StartProfiling(const std::string& name);
|
trace_event_memory.h | 54 void StartProfiling();
|
trace_event_memory_unittest.cc | 57 controller->StartProfiling();
|
trace_event_memory.cc | 179 base::Bind(&TraceMemoryController::StartProfiling, 194 void TraceMemoryController::StartProfiling() {
|
/external/chromium_org/tools/perf/ |
record_android_profile.py | 23 browser.StartProfiling(options.profiler, output_file)
|
/external/chromium_org/v8/test/cctest/ |
test-profile-generator.cc | 403 profiles.StartProfiling("", 1, false); 469 profiles.StartProfiling("", 1, true); 517 profiles.StartProfiling("", 1, false); 547 static void StartProfiling(const v8::FunctionCallbackInfo<v8::Value>& args); 555 "native function startProfiling();" 560 if (name->Equals(v8::String::NewFromUtf8(isolate, "startProfiling"))) { 561 return v8::FunctionTemplate::New(ProfilerExtension::StartProfiling); 571 void ProfilerExtension::StartProfiling( 621 "function c() { startProfiling(); }\n" 638 // startProfiling [all...] |
test-cpu-profiler.cc | 145 profiles->StartProfiling("", 1, false); 207 profiles->StartProfiling("", 1, false); 258 profiler->StartProfiling("1"); 260 profiler->StartProfiling("1"); 276 profiles->StartProfiling("", 1, false); 317 profiler->StartProfiling("1"); 322 profiler->StartProfiling("1"); 323 profiler->StartProfiling("2"); 331 profiler->StartProfiling("1"); 332 profiler->StartProfiling("2") [all...] |
/external/chromium_org/tools/perf/measurements/ |
loading_profile.py | 35 tab.browser.StartProfiling(perf_profiler.PerfProfiler.name(),
|
/external/chromium/chrome/common/ |
profiling.cc | 78 base::debug::StartProfiling(GetProfileName());
|
/frameworks/base/tests/HwAccelerationTest/res/layout/ |
list_activity.xml | 34 android:onClick="startProfiling"
|
/external/chromium_org/v8/src/ |
cpu-profiler.h | 212 void StartProfiling(const char* title, bool record_samples = false); 213 void StartProfiling(String* title, bool record_samples);
|
cpu-profiler.cc | 419 void CpuProfiler::StartProfiling(const char* title, bool record_samples) { 420 if (profiles_->StartProfiling(title, next_profile_uid_++, record_samples)) { 427 void CpuProfiler::StartProfiling(String* title, bool record_samples) { 428 StartProfiling(profiles_->GetName(title), record_samples);
|
/frameworks/base/test-runner/src/android/test/ |
TestRunner.java | 169 public void startProfiling() { 306 startProfiling(); 368 startProfiling(); 523 startProfiling();
|
/external/v8/src/ |
cpu-profiler.h | 209 static void StartProfiling(const char* title); 210 static void StartProfiling(String* title);
|
cpu-profiler.cc | 262 void CpuProfiler::StartProfiling(const char* title) { 268 void CpuProfiler::StartProfiling(String* title) { 473 if (profiles_->StartProfiling(title, next_profile_uid_++)) {
|
/external/chromium_org/chrome/common/ |
profiling.cc | 172 base::debug::StartProfiling(GetProfileName());
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ListActivity.java | 91 public void startProfiling(View v) {
|