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;232 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_;
64 profiler_.reset(new CpuProfiler(isolate_)); in StartProfiling()
390 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title, in CpuProfile()
279 class V8_EXPORT CpuProfiler {286 static CpuProfiler* New(Isolate* isolate);332 CpuProfiler();333 ~CpuProfiler();334 CpuProfiler(const CpuProfiler&);335 CpuProfiler& operator=(const CpuProfiler&);
72 class CpuProfiler; variable6685 CpuProfiler* GetCpuProfiler());
15 class CpuProfiler; variable59 v8::CpuProfiler* m_profiler;
208 m_profiler = v8::CpuProfiler::New(m_isolate); in enable()240 m_profiler = v8::CpuProfiler::New(m_isolate); in restore()
64 class CpuProfiler; variable332 friend class CpuProfiler; variable
54 class CpuProfiler; variable1302 friend v8::CpuProfiler* v8::Isolate::GetCpuProfiler();1303 CpuProfiler* cpu_profiler() const { return cpu_profiler_; } in cpu_profiler()1379 CpuProfiler* cpu_profiler_;
7768 CpuProfiler* Isolate::GetCpuProfiler() { in GetCpuProfiler()7769 i::CpuProfiler* cpu_profiler = in GetCpuProfiler()7771 return reinterpret_cast<CpuProfiler*>(cpu_profiler); in GetCpuProfiler()9228 i::CpuProfiler* profiler = profile->cpu_profiler(); in Delete()9277 CpuProfiler* CpuProfiler::New(Isolate* isolate) { in New()9278 return reinterpret_cast<CpuProfiler*>( in New()9279 new i::CpuProfiler(reinterpret_cast<i::Isolate*>(isolate))); in New()9282 void CpuProfiler::Dispose() { delete reinterpret_cast<i::CpuProfiler*>(this); } in Dispose()9284 void CpuProfiler::SetSamplingInterval(int us) { in SetSamplingInterval()9286 return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval( in SetSamplingInterval()[all …]
2491 cpu_profiler_ = new CpuProfiler(this); in Throw()
15620 Remove deprecated CpuProfiler methods.