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

  /external/v8/include/
v8-profiler.h 117 * CpuProfile contains a CPU profile in a form of two call trees:
121 class V8EXPORT CpuProfile {
168 static const CpuProfile* GetProfile(
173 static const CpuProfile* FindProfile(
191 static const CpuProfile* StopProfiling(
  /external/chromium_org/v8/include/
v8-profiler.h 94 * CpuProfile contains a CPU profile in a form of top-down call tree
97 class V8_EXPORT CpuProfile {
164 const CpuProfile* GetCpuProfile(int index);
183 const CpuProfile* StopCpuProfiling(Handle<String> title);
  /external/chromium_org/v8/src/
profile-generator.cc 355 CpuProfile::CpuProfile(const char* title, unsigned uid, bool record_samples)
364 void CpuProfile::AddPath(const Vector<CodeEntry*>& path) {
370 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
375 void CpuProfile::Print() {
477 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
504 current_profiles_.Add(new CpuProfile(title, uid, record_samples));
510 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
512 CpuProfile* profile = NULL;
538 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile)
    [all...]
profile-generator.h 197 class CpuProfile {
199 CpuProfile(const char* title, unsigned uid, bool record_samples);
229 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
285 CpuProfile* StopProfiling(const char* title);
286 List<CpuProfile*>* profiles() { return &finished_profiles_; }
300 void RemoveProfile(CpuProfile* profile);
319 List<CpuProfile*> finished_profiles_;
322 List<CpuProfile*> current_profiles_;
  /external/v8/src/
profile-generator.h 211 class CpuProfile {
213 CpuProfile(const char* title, unsigned uid)
220 CpuProfile* FilteredClone(int security_token_id);
238 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
295 CpuProfile* StopProfiling(int security_token_id,
298 List<CpuProfile*>* Profiles(int security_token_id);
305 CpuProfile* GetProfile(int security_token_id, unsigned uid);
307 void RemoveProfile(CpuProfile* profile);
332 List<CpuProfile*>* GetProfilesList(int security_token_id);
341 List<List<CpuProfile*>* > profiles_by_token_
    [all...]

Completed in 553 milliseconds