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 74 * CpuProfile contains a CPU profile in a form of top-down call tree
77 class V8_EXPORT CpuProfile {
160 CpuProfile* StopProfiling(Handle<String> title);
164 const CpuProfile* StopCpuProfiling(Handle<String> title));
  /external/v8/src/
profile-generator.cc 322 CpuProfile::CpuProfile(const char* title, bool record_samples)
329 void CpuProfile::AddPath(base::TimeTicks timestamp,
339 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
344 void CpuProfile::Print() {
446 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
473 current_profiles_.Add(new CpuProfile(title, record_samples));
479 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
481 CpuProfile* profile = NULL;
507 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile)
    [all...]
profile-generator.h 173 class CpuProfile {
175 CpuProfile(const char* title, bool record_samples);
206 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
262 CpuProfile* StopProfiling(const char* title);
263 List<CpuProfile*>* profiles() { return &finished_profiles_; }
277 void RemoveProfile(CpuProfile* profile);
297 List<CpuProfile*> finished_profiles_;
300 List<CpuProfile*> current_profiles_;

Completed in 123 milliseconds