Searched refs:CpuProfiler (Results 1 – 15 of 15) sorted by relevance
198 int CpuProfiler::GetProfilesCount() { in GetProfilesCount()204 CpuProfile* CpuProfiler::GetProfile(int index) { in GetProfile()209 void CpuProfiler::DeleteAllProfiles() { in DeleteAllProfiles()215 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile()224 void CpuProfiler::CodeEventHandler(const CodeEventsContainer& evt_rec) { in CodeEventHandler()244 CpuProfiler::CpuProfiler(Isolate* isolate) in CpuProfiler() function in v8::internal::CpuProfiler253 CpuProfiler::CpuProfiler(Isolate* isolate, CpuProfilesCollection* test_profiles, in CpuProfiler() function in v8::internal::CpuProfiler266 CpuProfiler::~CpuProfiler() { in ~CpuProfiler()270 void CpuProfiler::set_sampling_interval(base::TimeDelta value) { in set_sampling_interval()275 void CpuProfiler::ResetProfiles() { in ResetProfiles()[all …]
188 class CpuProfiler : public CodeEventObserver {190 explicit CpuProfiler(Isolate* isolate);192 CpuProfiler(Isolate* isolate, CpuProfilesCollection* profiles,196 ~CpuProfiler() override;234 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
17 class CpuProfiler; variable35 std::unique_ptr<CpuProfiler> profiler_;
271 CpuProfile(CpuProfiler* profiler, const char* title, bool record_samples);289 CpuProfiler* cpu_profiler() const { return profiler_; } in cpu_profiler()305 CpuProfiler* const profiler_;340 void set_cpu_profiler(CpuProfiler* profiler) { profiler_ = profiler; } in set_cpu_profiler()359 CpuProfiler* profiler_;
67 profiler_.reset(new CpuProfiler(isolate_)); in StartProfiling()
391 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title, in CpuProfile()
280 class V8_EXPORT CpuProfiler {287 static CpuProfiler* New(Isolate* isolate);333 CpuProfiler();334 ~CpuProfiler();335 CpuProfiler(const CpuProfiler&);336 CpuProfiler& operator=(const CpuProfiler&);
72 class CpuProfiler; variable6787 CpuProfiler* GetCpuProfiler());
15 class CpuProfiler; variable64 v8::CpuProfiler* m_profiler = nullptr;
366 m_profiler = v8::CpuProfiler::New(m_isolate); in startProfiling()
64 class CpuProfiler; variable341 friend class CpuProfiler; variable
55 class CpuProfiler; variable1370 friend v8::CpuProfiler* v8::Isolate::GetCpuProfiler();1371 CpuProfiler* cpu_profiler() const { return cpu_profiler_; } in cpu_profiler()1450 CpuProfiler* cpu_profiler_;
7994 CpuProfiler* Isolate::GetCpuProfiler() { in GetCpuProfiler()7995 i::CpuProfiler* cpu_profiler = in GetCpuProfiler()7997 return reinterpret_cast<CpuProfiler*>(cpu_profiler); in GetCpuProfiler()9695 i::CpuProfiler* profiler = profile->cpu_profiler(); in Delete()9744 CpuProfiler* CpuProfiler::New(Isolate* isolate) { in New()9745 return reinterpret_cast<CpuProfiler*>( in New()9746 new i::CpuProfiler(reinterpret_cast<i::Isolate*>(isolate))); in New()9749 void CpuProfiler::Dispose() { delete reinterpret_cast<i::CpuProfiler*>(this); } in Dispose()9751 void CpuProfiler::SetSamplingInterval(int us) { in SetSamplingInterval()9753 return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval( in SetSamplingInterval()[all …]
2641 cpu_profiler_ = new CpuProfiler(this); in Throw()
19641 Remove deprecated CpuProfiler methods.