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

  /external/v8/include/
v8-profiler.h 52 * and emits CpuProfile trace events once v8.cpu_profiler tracing category
226 * CpuProfile contains a CPU profile in a form of top-down call tree
229 class V8_EXPORT CpuProfile {
318 CpuProfile* StopProfiling(Local<String> title);
  /external/v8/src/profiler/
profile-generator.cc 391 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title,
406 void CpuProfile::AddPath(base::TimeTicks timestamp,
452 void CpuProfile::StreamPendingTraceEvents() {
458 value->BeginDictionary("cpuProfile");
496 void CpuProfile::FinishProfile() {
505 void CpuProfile::Print() {
555 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
581 current_profiles_.Add(new CpuProfile(profiler_, title, record_samples));
587 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title)
    [all...]
profile-generator.h 269 class CpuProfile {
271 CpuProfile(CpuProfiler* profiler, const char* title, bool record_samples);
308 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
342 CpuProfile* StopProfiling(const char* title);
343 List<CpuProfile*>* profiles() { return &finished_profiles_; }
346 void RemoveProfile(CpuProfile* profile);
358 List<CpuProfile*> finished_profiles_;
362 List<CpuProfile*> current_profiles_;

Completed in 66 milliseconds