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

/external/v8/src/profiler/
H A Dcpu-profiler.cc176 int CpuProfiler::GetProfilesCount() {
182 CpuProfile* CpuProfiler::GetProfile(int index) {
187 void CpuProfiler::DeleteAllProfiles() {
193 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
202 void CpuProfiler::CodeEventHandler(const CodeEventsContainer& evt_rec) {
222 CpuProfiler::CpuProfiler(Isolate* isolate) function in class:v8::internal::CpuProfiler
231 CpuProfiler::CpuProfiler(Isolate* isolate, CpuProfilesCollection* test_profiles, function in class:v8::internal::CpuProfiler
244 CpuProfiler
[all...]
H A Dcpu-profiler-inl.h46 // some of them have been filtered out by CpuProfiler.
53 TickSample* CpuProfiler::StartTickSample() {
59 void CpuProfiler::FinishTickSample() {
H A Dcpu-profiler.h189 class CpuProfiler : public CodeEventObserver { class in namespace:v8::internal
191 explicit CpuProfiler(Isolate* isolate);
193 CpuProfiler(Isolate* isolate, CpuProfilesCollection* profiles,
197 ~CpuProfiler() override;
237 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
H A Dprofile-generator.h271 CpuProfile(CpuProfiler* profiler, const char* title, bool record_samples);
289 CpuProfiler* cpu_profiler() const { return profiler_; }
303 CpuProfiler* const profiler_;
337 void set_cpu_profiler(CpuProfiler* profiler) { profiler_ = profiler; }
356 CpuProfiler* profiler_;
H A Dprofile-generator.cc402 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title,
/external/v8/include/
H A Dv8-profiler.h139 * |record_samples| parameter of CpuProfiler::StartCpuProfiling is true.
170 * Deletes the profile and removes it from CpuProfiler's list.
181 class V8_EXPORT CpuProfiler { class in namespace:v8
222 CpuProfiler();
223 ~CpuProfiler();
224 CpuProfiler(const CpuProfiler&);
225 CpuProfiler& operator=(const CpuProfiler&);
H A Dv8.h75 class CpuProfiler;
5919 CpuProfiler* GetCpuProfiler();
/external/v8/test/cctest/
H A Dprofiler-extension.cc62 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler();
70 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler();
H A Dtest-cpu-profiler.cc43 using i::CpuProfiler;
160 CpuProfiler profiler(isolate, profiles, generator, processor);
228 CpuProfiler profiler(isolate, profiles, generator, processor);
279 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
300 CpuProfiler profiler(isolate, profiles, generator, processor);
337 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
364 static bool FindCpuProfile(v8::CpuProfiler* v8profiler,
366 i::CpuProfiler* profiler = reinterpret_cast<i::CpuProfiler*>(v8profiler);
381 v8::CpuProfiler* cpu_profile
[all...]
H A Dtest-profile-generator.cc41 using i::CpuProfiler;
520 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
597 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler();
598 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profiler);
650 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
677 CpuProfiler* profiler = isolate->cpu_profiler();
700 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler();
701 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profile
[all...]
H A Dtest-api.cc99 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
103 reinterpret_cast<i::CpuProfiler*>(cpu_profiler)->DeleteAllProfiles();
/external/v8/src/
H A Dlog.h66 class CpuProfiler;
353 friend class CpuProfiler;
H A Disolate.h57 class CpuProfiler;
925 CpuProfiler* cpu_profiler() const { return cpu_profiler_; }
1342 CpuProfiler* cpu_profiler_;
H A Dapi.cc7151 CpuProfiler* Isolate::GetCpuProfiler() {
7152 i::CpuProfiler* cpu_profiler =
7154 return reinterpret_cast<CpuProfiler*>(cpu_profiler);
8337 i::CpuProfiler* profiler = profile->cpu_profiler();
8387 void CpuProfiler::SetSamplingInterval(int us) {
8389 return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval(
8393 void CpuProfiler::CollectSample() {
8394 reinterpret_cast<i::CpuProfiler*>(this)->CollectSample();
8397 void CpuProfiler::StartProfiling(Local<String> title, bool record_samples) {
8398 reinterpret_cast<i::CpuProfiler*>(thi
[all...]
H A Disolate.cc2205 cpu_profiler_ = new CpuProfiler(this);

Completed in 633 milliseconds