Searched refs:CpuProfiler (Results 1 – 15 of 15) sorted by relevance
/external/v8/src/profiler/ |
D | cpu-profiler.cc | 176 int CpuProfiler::GetProfilesCount() { in GetProfilesCount() 182 CpuProfile* CpuProfiler::GetProfile(int index) { in GetProfile() 187 void CpuProfiler::DeleteAllProfiles() { in DeleteAllProfiles() 193 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile() 203 void CpuProfiler::CallbackEvent(Name* name, Address entry_point) { in CallbackEvent() 215 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 230 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() 245 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code, in CodeCreateEvent() 265 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code, in CodeCreateEvent() 301 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent() [all …]
|
D | cpu-profiler.h | 189 CpuProfiler* cpu_profiler = cpu_profiler_isolate->cpu_profiler(); \ 196 class CpuProfiler : public CodeEventListener { 198 explicit CpuProfiler(Isolate* isolate); 200 CpuProfiler(Isolate* isolate, 205 virtual ~CpuProfiler(); 271 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
|
D | cpu-profiler-inl.h | 53 TickSample* CpuProfiler::StartTickSample() { in StartTickSample() 59 void CpuProfiler::FinishTickSample() { in FinishTickSample()
|
/external/v8/include/ |
D | v8-profiler.h | 181 class V8_EXPORT CpuProfiler { 215 CpuProfiler(); 216 ~CpuProfiler(); 217 CpuProfiler(const CpuProfiler&); 218 CpuProfiler& operator=(const CpuProfiler&);
|
D | v8.h | 73 class CpuProfiler; variable 5632 CpuProfiler* GetCpuProfiler();
|
/external/v8/test/cctest/ |
D | test-cpu-profiler.cc | 42 using i::CpuProfiler; 168 CpuProfiler profiler(isolate, profiles, &generator, processor.get()); in TEST() 229 CpuProfiler profiler(isolate, profiles, &generator, processor.get()); in TEST() 274 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST() 298 CpuProfiler profiler(isolate, profiles, &generator, processor.get()); in TEST() 329 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST() 356 static bool FindCpuProfile(v8::CpuProfiler* v8profiler, in FindCpuProfile() 358 i::CpuProfiler* profiler = reinterpret_cast<i::CpuProfiler*>(v8profiler); in FindCpuProfile() 373 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); in TEST() 374 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(cpu_profiler); in TEST() [all …]
|
D | profiler-extension.cc | 68 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); in StartProfiling() 77 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); in StopProfiling()
|
D | test-profile-generator.cc | 41 using i::CpuProfiler; 507 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST() 583 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler(); in TEST() 584 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profiler); in TEST() 640 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in GetFunctionLineNumber() 668 CpuProfiler* profiler = isolate->cpu_profiler(); in TEST() 690 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler(); in TEST() 691 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profiler); in TEST()
|
D | test-api.cc | 98 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); in RunWithProfiler() 102 reinterpret_cast<i::CpuProfiler*>(cpu_profiler)->DeleteAllProfiles(); in RunWithProfiler()
|
/external/v8/src/ |
D | log.h | 60 class CpuProfiler; variable 410 friend class CpuProfiler; variable
|
D | isolate.h | 53 class CpuProfiler; variable 899 CpuProfiler* cpu_profiler() const { return cpu_profiler_; } in cpu_profiler() 1271 CpuProfiler* cpu_profiler_;
|
D | api.cc | 6966 CpuProfiler* Isolate::GetCpuProfiler() { in GetCpuProfiler() 6967 i::CpuProfiler* cpu_profiler = in GetCpuProfiler() 6969 return reinterpret_cast<CpuProfiler*>(cpu_profiler); in GetCpuProfiler() 7997 i::CpuProfiler* profiler = isolate->cpu_profiler(); in Delete() 8047 void CpuProfiler::SetSamplingInterval(int us) { in SetSamplingInterval() 8049 return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval( in SetSamplingInterval() 8054 void CpuProfiler::StartProfiling(Local<String> title, bool record_samples) { in StartProfiling() 8055 reinterpret_cast<i::CpuProfiler*>(this)->StartProfiling( in StartProfiling() 8060 CpuProfile* CpuProfiler::StopProfiling(Local<String> title) { in StopProfiling() 8062 reinterpret_cast<i::CpuProfiler*>(this)->StopProfiling( in StopProfiling() [all …]
|
D | log.cc | 42 CpuProfiler* cpu_profiler = isolate_->cpu_profiler(); \
|
D | isolate.cc | 2135 cpu_profiler_ = new CpuProfiler(this); in Init()
|
/external/v8/ |
D | ChangeLog | 4490 Remove deprecated CpuProfiler methods.
|