HomeSort by relevance Sort by last modified time
    Searched refs:CpuProfile (Results 1 - 10 of 10) sorted by null

  /external/v8/test/cctest/
profiler-extension.h 43 static v8::CpuProfile* last_profile;
test-cpu-profiler.cc 42 using i::CpuProfile;
251 CpuProfile* profile = profiles->StopProfiling("");
321 CpuProfile* profile = profiles->StopProfiling("");
365 const v8::CpuProfile* v8profile) {
367 const i::CpuProfile* profile =
368 reinterpret_cast<const i::CpuProfile*>(v8profile);
387 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
396 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
402 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3);
424 const v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name)
    [all...]
profiler-extension.cc 36 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
test-profile-generator.cc 40 using i::CpuProfile;
384 CpuProfile* profile = profiles.StopProfiling("");
455 CpuProfile* profile = profiles.StopProfiling("");
489 CpuProfile* profile = profiles.StopProfiling("");
529 CpuProfile* profile = profiler->GetProfile(0);
611 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
712 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
  /external/v8/src/profiler/
cpu-profiler.h 28 class CpuProfile;
203 CpuProfile* StopProfiling(const char* title);
204 CpuProfile* StopProfiling(String* title);
206 CpuProfile* GetProfile(int index);
208 void DeleteProfile(CpuProfile* profile);
profile-generator.h 269 class CpuProfile {
271 CpuProfile(CpuProfiler* profiler, const char* title, bool record_samples);
305 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
339 CpuProfile* StopProfiling(const char* title);
340 List<CpuProfile*>* profiles() { return &finished_profiles_; }
343 void RemoveProfile(CpuProfile* profile);
355 List<CpuProfile*> finished_profiles_;
359 List<CpuProfile*> current_profiles_;
cpu-profiler.cc 182 CpuProfile* CpuProfiler::GetProfile(int index) {
193 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
311 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
314 CpuProfile* result = profiles_->StopProfiling(title);
322 CpuProfile* CpuProfiler::StopProfiling(String* title) {
profile-generator.cc 402 CpuProfile::CpuProfile(CpuProfiler* profiler, const char* title,
410 void CpuProfile::AddPath(base::TimeTicks timestamp,
421 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
425 void CpuProfile::Print() {
475 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
501 current_profiles_.Add(new CpuProfile(profiler_, title, record_samples));
507 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
509 CpuProfile* profile = NULL;
535 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile)
    [all...]
  /external/v8/include/
v8-profiler.h 126 * CpuProfile contains a CPU profile in a form of top-down call tree
129 class V8_EXPORT CpuProfile {
207 CpuProfile* StopProfiling(Local<String> title);
  /external/v8/src/
api.cc     [all...]

Completed in 182 milliseconds