Home
last modified time | relevance | path

Searched refs:CpuProfilesCollection (Results 1 – 6 of 6) sorted by relevance

/external/v8/test/cctest/
Dtest-cpu-profiler.cc17 using i::CpuProfilesCollection;
25 CpuProfilesCollection profiles; in TEST()
88 CpuProfilesCollection profiles; in TEST()
152 CpuProfilesCollection profiles; in TEST()
245 CpuProfilesCollection profiles; in TEST()
Dtest-profile-generator.cc18 using i::CpuProfilesCollection;
587 CpuProfilesCollection profiles; in TEST()
813 CpuProfilesCollection collection; in TEST()
815 CpuProfilesCollection::kMaxSimultaneousProfiles> titles; in TEST()
816 for (int i = 0; i < CpuProfilesCollection::kMaxSimultaneousProfiles; ++i) { in TEST()
823 "maximum", CpuProfilesCollection::kMaxSimultaneousProfiles + 1)); in TEST()
824 for (int i = 0; i < CpuProfilesCollection::kMaxSimultaneousProfiles; ++i) in TEST()
/external/v8/src/
Dprofile-generator.cc536 CpuProfilesCollection::CpuProfilesCollection() in CpuProfilesCollection() function in v8::internal::CpuProfilesCollection
559 CpuProfilesCollection::~CpuProfilesCollection() { in ~CpuProfilesCollection()
568 bool CpuProfilesCollection::StartProfiling(const char* title, unsigned uid) { in StartProfiling()
588 bool CpuProfilesCollection::StartProfiling(String* title, unsigned uid) { in StartProfiling()
593 CpuProfile* CpuProfilesCollection::StopProfiling(int security_token_id, in StopProfiling()
625 CpuProfile* CpuProfilesCollection::GetProfile(int security_token_id, in GetProfile()
643 int CpuProfilesCollection::GetProfileIndex(unsigned uid) { in GetProfileIndex()
652 bool CpuProfilesCollection::IsLastProfile(const char* title) { in IsLastProfile()
661 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile) { in RemoveProfile()
694 int CpuProfilesCollection::TokenToIndex(int security_token_id) { in TokenToIndex()
[all …]
Dcpu-profiler.h44 class CpuProfilesCollection; variable
285 CpuProfilesCollection* profiles_;
Dprofile-generator.h284 class CpuProfilesCollection {
286 CpuProfilesCollection();
287 ~CpuProfilesCollection();
347 DISALLOW_COPY_AND_ASSIGN(CpuProfilesCollection);
391 explicit ProfileGenerator(CpuProfilesCollection* profiles);
436 CpuProfilesCollection* profiles_;
Dcpu-profiler.cc465 : profiles_(new CpuProfilesCollection()), in CpuProfiler()
483 profiles_ = new CpuProfilesCollection(); in ResetProfiles()