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

  /external/v8/src/
cpu-profiler.cc 263 ASSERT(Isolate::Current()->cpu_profiler() != NULL);
264 Isolate::Current()->cpu_profiler()->StartCollectingProfile(title);
269 ASSERT(Isolate::Current()->cpu_profiler() != NULL);
270 Isolate::Current()->cpu_profiler()->StartCollectingProfile(title);
277 isolate->cpu_profiler()->StopCollectingProfile(title) : NULL;
284 isolate->cpu_profiler()->StopCollectingProfile(
290 ASSERT(Isolate::Current()->cpu_profiler() != NULL);
292 return Isolate::Current()->cpu_profiler()->profiles_->Profiles(
298 ASSERT(Isolate::Current()->cpu_profiler() != NULL);
299 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
    [all...]
cpu-profiler.h 251 CpuProfiler* profiler = isolate->cpu_profiler();
isolate.h 353 V(CpuProfiler*, cpu_profiler, NULL) \
    [all...]
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 252 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler();
306 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler();
349 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
351 CHECK_EQ(0, cpu_profiler->GetProfileCount());
353 cpu_profiler->StartCpuProfiling(name1);
354 const v8::CpuProfile* p1 = cpu_profiler->StopCpuProfiling(name1);
356 CHECK_EQ(1, cpu_profiler->GetProfileCount());
358 CHECK_EQ(p1, FindCpuProfile(cpu_profiler, uid1));
360 CHECK_EQ(0, cpu_profiler->GetProfileCount());
361 CHECK_EQ(NULL, FindCpuProfile(cpu_profiler, uid1))
416 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
432 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
595 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
658 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
755 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
805 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
849 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
896 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
939 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
1016 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
1096 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
1171 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
1241 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
1324 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
1336 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
    [all...]
test-profile-generator.cc 621 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); local
623 cpu_profiler->StartCpuProfiling(args[0].As<v8::String>());
625 cpu_profiler->StartCpuProfiling(v8::String::New(""));
631 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); local
633 cpu_profiler->StopCpuProfiling(args[0].As<v8::String>());
635 cpu_profiler->StopCpuProfiling(v8::String::New(""));
664 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler();
796 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler();
820 CpuProfiler* profiler = isolate->cpu_profiler();
test-api.cc 93 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); local
95 cpu_profiler->StartCpuProfiling(profile_name);
97 cpu_profiler->DeleteAllCpuProfiles();
887 if (isolate->cpu_profiler()->is_profiling()) {
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiler.cc 126 void* cpu_profiler);
262 void* cpu_profiler) {
263 CpuProfiler* instance = static_cast<CpuProfiler*>(cpu_profiler);
pprof     [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiler.cc 128 void* cpu_profiler);
264 void* cpu_profiler) {
265 CpuProfiler* instance = static_cast<CpuProfiler*>(cpu_profiler);
pprof     [all...]
  /external/chromium_org/v8/src/
cpu-profiler.h 180 CpuProfiler* cpu_profiler = cpu_profiler_isolate->cpu_profiler(); \
181 if (logger->is_logging_code_events() || cpu_profiler->is_profiling()) { \
codegen.cc 180 !isolate->cpu_profiler()->is_profiling()) {
log.cc 64 CpuProfiler* cpu_profiler = isolate_->cpu_profiler(); \
65 if (cpu_profiler->is_profiling()) { \
66 cpu_profiler->Call; \
    [all...]
sampler.cc 696 TickSample* sample = isolate_->cpu_profiler()->TickSampleEvent();
compiler.cc 113 no_frame_ranges_ = isolate->cpu_profiler()->is_profiling()
    [all...]
isolate.h 1003 CpuProfiler* cpu_profiler() const { return cpu_profiler_; } function in class:v8::internal::Isolate
    [all...]
api.cc 6819 i::CpuProfiler* cpu_profiler = local
    [all...]
heap.cc     [all...]
runtime.cc     [all...]
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.cc     [all...]
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc     [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.cc 748 isolate()->cpu_profiler()->is_profiling_address();
    [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc     [all...]

Completed in 631 milliseconds