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

/external/v8/include/
H A Dv8-profiler.h117 * CpuProfile contains a CPU profile in a form of two call trees:
121 class V8EXPORT CpuProfile { class in namespace:v8
168 static const CpuProfile* GetProfile(
173 static const CpuProfile* FindProfile(
191 static const CpuProfile* StopProfiling(
/external/chromium_org/v8/include/
H A Dv8-profiler.h94 * CpuProfile contains a CPU profile in a form of top-down call tree
97 class V8_EXPORT CpuProfile { class in namespace:v8
164 const CpuProfile* GetCpuProfile(int index);
183 const CpuProfile* StopCpuProfiling(Handle<String> title);
/external/chromium_org/v8/src/
H A Dprofile-generator.cc355 CpuProfile::CpuProfile(const char* title, unsigned uid, bool record_samples) function in class:v8::internal::CpuProfile
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* profil
[all...]
H A Dprofile-generator.h197 class CpuProfile { class in namespace:v8::internal
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/
H A Dprofile-generator.h211 class CpuProfile { class in namespace:v8::internal
213 CpuProfile(const char* title, unsigned uid) function in class:v8::internal::CpuProfile
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 258 milliseconds