Home
last modified time | relevance | path

Searched refs:CpuProfiler (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/profiler/
Dcpu-profiler.cc198 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::CpuProfiler
253 CpuProfiler::CpuProfiler(Isolate* isolate, CpuProfilesCollection* test_profiles, in CpuProfiler() function in v8::internal::CpuProfiler
266 CpuProfiler::~CpuProfiler() { in ~CpuProfiler()
270 void CpuProfiler::set_sampling_interval(base::TimeDelta value) { in set_sampling_interval()
275 void CpuProfiler::ResetProfiles() { in ResetProfiles()
[all …]
Dcpu-profiler.h188 class CpuProfiler : public CodeEventObserver {
190 explicit CpuProfiler(Isolate* isolate);
192 CpuProfiler(Isolate* isolate, CpuProfilesCollection* profiles,
196 ~CpuProfiler() override;
232 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
Dtracing-cpu-profiler.h17 class CpuProfiler; variable
35 std::unique_ptr<CpuProfiler> profiler_;
Dprofile-generator.h271 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_;
Dtracing-cpu-profiler.cc64 profiler_.reset(new CpuProfiler(isolate_)); in StartProfiling()
Dprofile-generator.cc390 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title, in CpuProfile()
/external/v8/include/
Dv8-profiler.h279 class V8_EXPORT CpuProfiler {
286 static CpuProfiler* New(Isolate* isolate);
332 CpuProfiler();
333 ~CpuProfiler();
334 CpuProfiler(const CpuProfiler&);
335 CpuProfiler& operator=(const CpuProfiler&);
Dv8.h72 class CpuProfiler; variable
6685 CpuProfiler* GetCpuProfiler());
/external/v8/src/inspector/
Dv8-profiler-agent-impl.h15 class CpuProfiler; variable
59 v8::CpuProfiler* m_profiler;
Dv8-profiler-agent-impl.cc208 m_profiler = v8::CpuProfiler::New(m_isolate); in enable()
240 m_profiler = v8::CpuProfiler::New(m_isolate); in restore()
/external/v8/src/
Dlog.h64 class CpuProfiler; variable
332 friend class CpuProfiler; variable
Disolate.h54 class CpuProfiler; variable
1302 friend v8::CpuProfiler* v8::Isolate::GetCpuProfiler();
1303 CpuProfiler* cpu_profiler() const { return cpu_profiler_; } in cpu_profiler()
1379 CpuProfiler* cpu_profiler_;
Dapi.cc7768 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 …]
Disolate.cc2491 cpu_profiler_ = new CpuProfiler(this); in Throw()
/external/v8/
DChangeLog15620 Remove deprecated CpuProfiler methods.