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

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofiler.cc77 class CpuProfiler { class
79 CpuProfiler();
80 ~CpuProfiler();
95 static CpuProfiler instance_;
134 CpuProfiler CpuProfiler::instance_;
137 CpuProfiler::CpuProfiler() function in class:CpuProfiler
158 bool CpuProfiler::Start(const char* fname, const ProfilerOptions* options) {
186 CpuProfiler
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofiler.cc75 class CpuProfiler { class
77 CpuProfiler();
78 ~CpuProfiler();
93 static CpuProfiler instance_;
132 CpuProfiler CpuProfiler::instance_;
135 CpuProfiler::CpuProfiler() function in class:CpuProfiler
156 bool CpuProfiler::Start(const char* fname, const ProfilerOptions* options) {
184 CpuProfiler
[all...]
/external/chromium_org/v8/src/
H A Dcpu-profiler.cc146 int CpuProfiler::GetProfilesCount() {
152 CpuProfile* CpuProfiler::GetProfile(int index) {
157 void CpuProfiler::DeleteAllProfiles() {
163 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
183 void CpuProfiler::CallbackEvent(Name* name, Address entry_point) {
197 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
211 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
225 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code,
251 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code,
277 void CpuProfiler
370 CpuProfiler::CpuProfiler(Isolate* isolate) function in class:v8::internal::CpuProfiler
381 CpuProfiler::CpuProfiler(Isolate* isolate, function in class:v8::internal::CpuProfiler
[all...]
H A Dcpu-profiler-inl.h48 // some of them have been filtered out by CpuProfiler.
55 TickSample* CpuProfiler::StartTickSample() {
61 void CpuProfiler::FinishTickSample() {
H A Dcpu-profiler.h185 CpuProfiler* cpu_profiler = cpu_profiler_isolate->cpu_profiler(); \
192 class CpuProfiler : public CodeEventListener { class in namespace:v8::internal
194 explicit CpuProfiler(Isolate* isolate);
196 CpuProfiler(Isolate* isolate,
201 virtual ~CpuProfiler();
266 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
H A Dlog.h60 class CpuProfiler;
419 friend class CpuProfiler;
H A Disolate.h46 class CpuProfiler;
970 CpuProfiler* cpu_profiler() const { return cpu_profiler_; }
1291 CpuProfiler* cpu_profiler_;
H A Dapi.cc6357 CpuProfiler* Isolate::GetCpuProfiler() {
6358 i::CpuProfiler* cpu_profiler =
6360 return reinterpret_cast<CpuProfiler*>(cpu_profiler);
7094 i::CpuProfiler* profiler = isolate->cpu_profiler();
7144 void CpuProfiler::SetSamplingInterval(int us) {
7146 return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval(
7151 void CpuProfiler::StartProfiling(Handle<String> title, bool record_samples) {
7152 reinterpret_cast<i::CpuProfiler*>(this)->StartProfiling(
7157 void CpuProfiler::StartCpuProfiling(Handle<String> title, bool record_samples) {
7162 CpuProfile* CpuProfiler
[all...]
H A Dlog.cc43 CpuProfiler* cpu_profiler = isolate_->cpu_profiler(); \
H A Disolate.cc1880 cpu_profiler_ = new CpuProfiler(this);
/external/chromium_org/v8/test/cctest/
H A Dprofiler-extension.cc60 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler();
69 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler();
H A Dtest-profile-generator.cc41 using i::CpuProfiler;
560 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
635 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler();
636 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profiler);
691 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
715 CpuProfiler* profiler = isolate->cpu_profiler();
737 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler();
738 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profile
[all...]
H A Dtest-cpu-profiler.cc41 using i::CpuProfiler;
147 CpuProfiler profiler(isolate, profiles, &generator, processor.get());
208 CpuProfiler profiler(isolate, profiles, &generator, processor.get());
253 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
277 CpuProfiler profiler(isolate, profiles, &generator, processor.get());
308 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
335 static bool FindCpuProfile(v8::CpuProfiler* v8profiler,
337 i::CpuProfiler* profiler = reinterpret_cast<i::CpuProfiler*>(v8profiler);
352 v8::CpuProfiler* cpu_profile
[all...]
H A Dtest-api.cc96 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
100 reinterpret_cast<i::CpuProfiler*>(cpu_profiler)->DeleteAllProfiles();
/external/chromium_org/v8/include/
H A Dv8-profiler.h87 * |record_samples| parameter of CpuProfiler::StartCpuProfiling is true.
118 * Deletes the profile and removes it from CpuProfiler's list.
129 class V8_EXPORT CpuProfiler { class in namespace:v8
172 CpuProfiler();
173 ~CpuProfiler();
174 CpuProfiler(const CpuProfiler&);
175 CpuProfiler& operator=(const CpuProfiler&);
H A Dv8.h68 class CpuProfiler;
4577 CpuProfiler* GetCpuProfiler();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptProfiler.cpp54 v8::CpuProfiler* profiler = isolate->GetCpuProfiler();
67 v8::CpuProfiler* profiler = isolate->GetCpuProfiler();
77 v8::CpuProfiler* profiler = isolate->GetCpuProfiler();
306 if (v8::CpuProfiler* profiler = isolate->GetCpuProfiler())

Completed in 1147 milliseconds