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

  /external/chromium/base/debug/
profiler.cc 33 void StopProfiling() {
51 void StopProfiling() {
  /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/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 210 milliseconds