Searched defs:StartProfiling (Results 1 - 5 of 5) sorted by relevance

/external/chromium/base/debug/
H A Dprofiler.cc23 void StartProfiling(const std::string& name) { function in namespace:base::debug
48 void StartProfiling(const std::string& name) {
/external/v8/src/
H A Dcpu-profiler.cc262 void CpuProfiler::StartProfiling(const char* title) { function in class:v8::internal::CpuProfiler
268 void CpuProfiler::StartProfiling(String* title) { function in class:v8::internal::CpuProfiler
473 if (profiles_->StartProfiling(title, next_profile_uid_++)) {
H A Dprofile-generator.cc605 bool CpuProfilesCollection::StartProfiling(const char* title, unsigned uid) { function in class:v8::internal::CpuProfilesCollection
625 bool CpuProfilesCollection::StartProfiling(String* title, unsigned uid) { function in class:v8::internal::CpuProfilesCollection
626 return StartProfiling(GetName(title), uid);
H A Dapi.cc5929 void CpuProfiler::StartProfiling(Handle<String> title) { function in class:v8::CpuProfiler
5931 IsDeadCheck(isolate, "v8::CpuProfiler::StartProfiling");
5932 i::CpuProfiler::StartProfiling(*Utils::OpenHandle(*title));
/external/v8/test/cctest/
H A Dtest-profile-generator.cc585 profiles.StartProfiling("", 1);
698 static v8::Handle<v8::Value> StartProfiling(const v8::Arguments& args);
712 return v8::FunctionTemplate::New(ProfilerExtension::StartProfiling);
722 v8::Handle<v8::Value> ProfilerExtension::StartProfiling( function in class:ProfilerExtension
725 v8::CpuProfiler::StartProfiling(args[0].As<v8::String>());
727 v8::CpuProfiler::StartProfiling(v8::String::New(""));
816 CHECK(collection.StartProfiling(title.start(), i + 1)); // UID must be > 0.
819 CHECK(!collection.StartProfiling(

Completed in 299 milliseconds