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 126 * CpuProfile contains a CPU profile in a form of top-down call tree
129 class V8_EXPORT CpuProfile {
207 CpuProfile* StopProfiling(Local<String> title);
  /external/v8/src/profiler/
profile-generator.cc 351 CpuProfile::CpuProfile(Isolate* isolate, const char* title, bool record_samples)
358 void CpuProfile::AddPath(base::TimeTicks timestamp,
368 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
373 void CpuProfile::Print() {
453 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
480 current_profiles_.Add(new CpuProfile(isolate_, title, record_samples));
486 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
488 CpuProfile* profile = NULL;
514 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile)
    [all...]
profile-generator.h 222 class CpuProfile {
224 CpuProfile(Isolate* isolate, const char* title, bool record_samples);
256 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
309 CpuProfile* StopProfiling(const char* title);
310 List<CpuProfile*>* profiles() { return &finished_profiles_; }
324 void RemoveProfile(CpuProfile* profile);
344 List<CpuProfile*> finished_profiles_;
349 List<CpuProfile*> current_profiles_;

Completed in 44 milliseconds