Searched refs:CpuProfile (Results 1 – 11 of 11) sorted by relevance
/external/v8/test/cctest/ |
D | test-cpu-profiler.cc | 15 using i::CpuProfile; 179 CpuProfile* profile = in TEST() 269 CpuProfile* profile = in TEST() 323 const v8::CpuProfile* p1 = v8::CpuProfiler::StopProfiling(name1); in TEST() 328 const_cast<v8::CpuProfile*>(p1)->Delete(); in TEST() 334 const v8::CpuProfile* p2 = v8::CpuProfiler::StopProfiling(name2); in TEST() 343 const v8::CpuProfile* p3 = v8::CpuProfiler::StopProfiling(name3); in TEST() 350 const_cast<v8::CpuProfile*>(p2)->Delete(); in TEST() 354 const_cast<v8::CpuProfile*>(p3)->Delete(); in TEST() 369 const v8::CpuProfile* p1 = v8::CpuProfiler::StopProfiling(name1); in TEST() [all …]
|
D | test-profile-generator.cc | 16 using i::CpuProfile; 623 CpuProfile* profile = in TEST() 781 CpuProfile* profile = in TEST()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | ScriptProfile.h | 38 class CpuProfile; variable 47 static PassRefPtr<ScriptProfile> create(const v8::CpuProfile* profile) in create() 60 ScriptProfile(const v8::CpuProfile* profile) in ScriptProfile() 64 const v8::CpuProfile* m_profile;
|
D | ScriptProfile.cpp | 44 const_cast<v8::CpuProfile*>(m_profile)->Delete(); in ~ScriptProfile()
|
D | ScriptProfiler.cpp | 53 const v8::CpuProfile* profile = state ? in stop()
|
/external/v8/src/ |
D | cpu-profiler.h | 43 class CpuProfile; variable 225 static CpuProfile* StopProfiling(const char* title); 226 static CpuProfile* StopProfiling(Object* security_token, String* title); 228 static CpuProfile* GetProfile(Object* security_token, int index); 229 static CpuProfile* FindProfile(Object* security_token, unsigned uid); 231 static void DeleteProfile(CpuProfile* profile); 279 CpuProfile* StopCollectingProfile(const char* title); 280 CpuProfile* StopCollectingProfile(Object* security_token, String* title);
|
D | cpu-profiler.cc | 290 CpuProfile* CpuProfiler::StopProfiling(const char* title) { in StopProfiling() 296 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) { in StopProfiling() 311 CpuProfile* CpuProfiler::GetProfile(Object* security_token, int index) { in GetProfile() 319 CpuProfile* CpuProfiler::FindProfile(Object* security_token, unsigned uid) { in FindProfile() 345 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile() 532 CpuProfile* CpuProfiler::StopCollectingProfile(const char* title) { in StopCollectingProfile() 535 CpuProfile* result = in StopCollectingProfile() 546 CpuProfile* CpuProfiler::StopCollectingProfile(Object* security_token, in StopCollectingProfile()
|
D | profile-generator.h | 208 class CpuProfile { 210 CpuProfile(const char* title, unsigned uid) in CpuProfile() function 217 CpuProfile* FilteredClone(int security_token_id); 235 DISALLOW_COPY_AND_ASSIGN(CpuProfile); 291 CpuProfile* StopProfiling(int security_token_id, 294 List<CpuProfile*>* Profiles(int security_token_id); 301 CpuProfile* GetProfile(int security_token_id, unsigned uid); 303 void RemoveProfile(CpuProfile* profile); 328 List<CpuProfile*>* GetProfilesList(int security_token_id); 337 List<List<CpuProfile*>* > profiles_by_token_; [all …]
|
D | profile-generator.cc | 447 void CpuProfile::AddPath(const Vector<CodeEntry*>& path) { in AddPath() 453 void CpuProfile::CalculateTotalTicks() { in CalculateTotalTicks() 459 void CpuProfile::SetActualSamplingRate(double actual_sampling_rate) { in SetActualSamplingRate() 465 CpuProfile* CpuProfile::FilteredClone(int security_token_id) { in FilteredClone() 467 CpuProfile* clone = new CpuProfile(title_, uid_); in FilteredClone() 474 void CpuProfile::ShortPrint() { in ShortPrint() 482 void CpuProfile::Print() { in Print() 540 profiles_by_token_.Add(new List<CpuProfile*>()); in CpuProfilesCollection() 548 static void DeleteCpuProfile(CpuProfile** profile_ptr) { in DeleteCpuProfile() 552 static void DeleteProfilesList(List<CpuProfile*>** list_ptr) { in DeleteProfilesList() [all …]
|
D | api.cc | 5178 void CpuProfile::Delete() { in Delete() 5181 i::CpuProfiler::DeleteProfile(reinterpret_cast<i::CpuProfile*>(this)); in Delete() 5190 unsigned CpuProfile::GetUid() const { in GetUid() 5193 return reinterpret_cast<const i::CpuProfile*>(this)->uid(); in GetUid() 5197 Handle<String> CpuProfile::GetTitle() const { in GetTitle() 5200 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTitle() 5206 const CpuProfileNode* CpuProfile::GetBottomUpRoot() const { in GetBottomUpRoot() 5209 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetBottomUpRoot() 5214 const CpuProfileNode* CpuProfile::GetTopDownRoot() const { in GetTopDownRoot() 5217 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTopDownRoot() [all …]
|
/external/v8/include/ |
D | v8-profiler.h | 121 class V8EXPORT CpuProfile { 168 static const CpuProfile* GetProfile( 173 static const CpuProfile* FindProfile( 191 static const CpuProfile* StopProfiling(
|