Home
last modified time | relevance | path

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

/external/v8/src/profiler/
Dprofile-generator.h335 class CpuProfilesCollection {
337 explicit CpuProfilesCollection(Isolate* isolate);
338 ~CpuProfilesCollection();
365 DISALLOW_COPY_AND_ASSIGN(CpuProfilesCollection);
371 ProfileGenerator(Isolate* isolate, CpuProfilesCollection* profiles);
382 CpuProfilesCollection* profiles_;
Dprofile-generator.cc549 CpuProfilesCollection::CpuProfilesCollection(Isolate* isolate) in CpuProfilesCollection() function in v8::internal::CpuProfilesCollection
559 CpuProfilesCollection::~CpuProfilesCollection() { in ~CpuProfilesCollection()
565 bool CpuProfilesCollection::StartProfiling(const char* title, in StartProfiling()
586 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) { in StopProfiling()
605 bool CpuProfilesCollection::IsLastProfile(const char* title) { in IsLastProfile()
614 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile) { in RemoveProfile()
625 void CpuProfilesCollection::AddPathToCurrentProfiles( in AddPathToCurrentProfiles()
639 CpuProfilesCollection* profiles) in ProfileGenerator()
Dcpu-profiler.h28 class CpuProfilesCollection; variable
192 CpuProfiler(Isolate* isolate, CpuProfilesCollection* profiles,
226 std::unique_ptr<CpuProfilesCollection> profiles_;
Dcpu-profiler.cc248 profiles_(new CpuProfilesCollection(isolate)), in CpuProfiler()
253 CpuProfiler::CpuProfiler(Isolate* isolate, CpuProfilesCollection* test_profiles, in CpuProfiler()
276 profiles_.reset(new CpuProfilesCollection(isolate_)); in ResetProfiles()