Searched refs:CpuProfile (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptProfile.h44 static PassRefPtrWillBeRawPtr<ScriptProfile> create(v8::CpuProfile* profile, double idleTime)
62 ScriptProfile(v8::CpuProfile* profile, double idleTime)
68 v8::CpuProfile* m_profile;
/external/chromium_org/v8/test/cctest/
H A Dprofiler-extension.h46 static v8::CpuProfile* last_profile;
H A Dprofiler-extension.cc37 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
H A Dtest-cpu-profiler.cc40 using i::CpuProfile;
226 CpuProfile* profile = profiles->StopProfiling("");
291 CpuProfile* profile = profiles->StopProfiling("");
336 const v8::CpuProfile* v8profile) {
338 const i::CpuProfile* profile =
339 reinterpret_cast<const i::CpuProfile*>(v8profile);
358 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
367 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
373 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3);
396 const v8::CpuProfile* profil
[all...]
H A Dtest-profile-generator.cc40 using i::CpuProfile;
440 CpuProfile* profile = profiles.StopProfiling("");
503 CpuProfile* profile = profiles.StopProfiling("");
532 CpuProfile* profile = profiles.StopProfiling("");
569 CpuProfile* profile = profiler->GetProfile(0);
648 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
756 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
/external/chromium_org/v8/src/
H A Dprofile-generator.h173 class CpuProfile { class in namespace:v8::internal
175 CpuProfile(const char* title, bool record_samples);
206 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
262 CpuProfile* StopProfiling(const char* title);
263 List<CpuProfile*>* profiles() { return &finished_profiles_; }
277 void RemoveProfile(CpuProfile* profile);
297 List<CpuProfile*> finished_profiles_;
300 List<CpuProfile*> current_profiles_;
H A Dcpu-profiler.h22 class CpuProfile;
206 CpuProfile* StopProfiling(const char* title);
207 CpuProfile* StopProfiling(String* title);
209 CpuProfile* GetProfile(int index);
211 void DeleteProfile(CpuProfile* profile);
H A Dprofile-generator.cc322 CpuProfile::CpuProfile(const char* title, bool record_samples) function in class:v8::internal::CpuProfile
329 void CpuProfile::AddPath(base::TimeTicks timestamp,
339 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
344 void CpuProfile::Print() {
446 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
473 current_profiles_.Add(new CpuProfile(title, record_samples));
479 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
481 CpuProfile* profile = NULL;
507 void CpuProfilesCollection::RemoveProfile(CpuProfile* profil
[all...]
H A Dcpu-profiler.cc152 CpuProfile* CpuProfiler::GetProfile(int index) {
163 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
455 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
458 CpuProfile* result = profiles_->StopProfiling(title);
466 CpuProfile* CpuProfiler::StopProfiling(String* title) {
H A Dapi.cc7092 void CpuProfile::Delete() {
7096 profiler->DeleteProfile(reinterpret_cast<i::CpuProfile*>(this));
7100 Handle<String> CpuProfile::GetTitle() const {
7102 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7108 const CpuProfileNode* CpuProfile::GetTopDownRoot() const {
7109 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
7114 const CpuProfileNode* CpuProfile::GetSample(int index) const {
7115 const i::CpuProfile* profil
[all...]
/external/chromium_org/v8/include/
H A Dv8-profiler.h74 * CpuProfile contains a CPU profile in a form of top-down call tree
77 class V8_EXPORT CpuProfile { class in namespace:v8
160 CpuProfile* StopProfiling(Handle<String> title);
164 const CpuProfile* StopCpuProfiling(Handle<String> title));
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptProfiler.cpp81 v8::CpuProfile* profile = profiler->StopProfiling(v8String(isolate, title));

Completed in 267 milliseconds