HomeSort by relevance Sort by last modified time
    Searched defs:StopProfiling (Results 1 - 12 of 12) sorted by null

  /external/chromium/base/debug/
profiler.cc 33 void StopProfiling() {
51 void StopProfiling() {
  /external/chromium_org/base/debug/
profiler.cc 38 void StopProfiling() {
60 void StopProfiling() {
trace_event_memory.cc 148 StopProfiling();
174 base::Bind(&TraceMemoryController::StopProfiling,
213 void TraceMemoryController::StopProfiling() {
  /external/chromium_org/tools/telemetry/telemetry/core/
browser.py 212 def StopProfiling(self):
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner.py 103 def StopProfiling(self):
104 self.browser.StopProfiling()
192 state.StopProfiling()
  /external/chromium_org/v8/src/
cpu-profiler.cc 453 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
456 CpuProfile* result = profiles_->StopProfiling(title);
464 CpuProfile* CpuProfiler::StopProfiling(String* title) {
468 return profiles_->StopProfiling(profile_title);
profile-generator.cc 543 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
  /external/v8/src/
cpu-profiler.cc 274 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
281 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) {
522 profiles_->StopProfiling(TokenEnumerator::kNoSecurityToken,
538 return profiles_->StopProfiling(token, profile_title, actual_sampling_rate);
profile-generator.cc 630 CpuProfile* CpuProfilesCollection::StopProfiling(int security_token_id,
    [all...]
api.cc     [all...]
  /external/chromium_org/v8/test/cctest/
test-profile-generator.cc 487 CpuProfile* profile = profiles.StopProfiling("");
550 CpuProfile* profile = profiles.StopProfiling("");
579 CpuProfile* profile = profiles.StopProfiling("");
596 static void StopProfiling(const v8::FunctionCallbackInfo<v8::Value>& args);
604 "native function stopProfiling();";
610 } else if (name->Equals(v8::String::New("stopProfiling"))) {
611 return v8::FunctionTemplate::New(ProfilerExtension::StopProfiling);
629 void ProfilerExtension::StopProfiling(
671 "stopProfiling();");
750 "stopProfiling();\n"))
    [all...]
  /external/v8/test/cctest/
test-profile-generator.cc 621 profiles.StopProfiling(TokenEnumerator::kNoSecurityToken, "", 1);
699 static v8::Handle<v8::Value> StopProfiling(const v8::Arguments& args);
707 "native function stopProfiling();";
713 } else if (name->Equals(v8::String::New("stopProfiling"))) {
714 return v8::FunctionTemplate::New(ProfilerExtension::StopProfiling);
732 v8::Handle<v8::Value> ProfilerExtension::StopProfiling(
735 v8::CpuProfiler::StopProfiling(args[0].As<v8::String>());
737 v8::CpuProfiler::StopProfiling(v8::String::New(""));
776 "stopProfiling();");

Completed in 1532 milliseconds