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

  /external/chromium_org/v8/src/
sampler.h 60 frames_count(0),
72 int frames_count : 8; // Number of captured frames. member in struct:v8::internal::TickSample
profile-generator.cc 611 ScopedVector<CodeEntry*> entries(sample.frames_count + 3);
660 *stack_end = stack_pos + sample.frames_count;
sampler.cc 554 frames_count = i;
log.cc     [all...]
  /external/v8/src/
cpu-profiler.cc 179 !it.done() && sample->frames_count < TickSample::kMaxFramesCount;
181 sample->stack[sample->frames_count++] = it.frame()->pc();
229 // in case of frames_count having a wild value.
230 if (record.sample.frames_count < 0
231 || record.sample.frames_count > TickSample::kMaxFramesCount)
232 record.sample.frames_count = 0;
platform-macos.cc 329 int frames_count = backtrace(addresses.start(), frames_size); local
331 char** symbols = backtrace_symbols(addresses.start(), frames_count);
336 for (int i = 0; i < frames_count; i++) {
350 return frames_count;
platform.h 686 frames_count(0),
698 int frames_count : 8; // Number of captured frames.
platform-win32.cc 1342 int frames_count = 0; local
    [all...]
platform-freebsd.cc 316 int frames_count = backtrace(addresses.start(), frames_size); local
318 char** symbols = backtrace_symbols(addresses.start(), frames_count);
323 for (int i = 0; i < frames_count; i++) {
336 return frames_count;
platform-linux.cc 566 int frames_count = backtrace(addresses.start(), frames_size); local
568 char** symbols = backtrace_symbols(addresses.start(), frames_count);
573 for (int i = 0; i < frames_count; i++) {
586 return frames_count;
    [all...]
platform-openbsd.cc 363 int frames_count = backtrace(addresses.start(), frames_size); local
365 char** symbols = backtrace_symbols(addresses.start(), frames_count);
370 for (int i = 0; i < frames_count; i++) {
383 return frames_count;
log.cc 180 sample->frames_count = i;
    [all...]
profile-generator.cc 883 ScopedVector<CodeEntry*> entries(sample.frames_count + 3);
908 *stack_end = stack_pos + sample.frames_count;
    [all...]
  /external/v8/test/cctest/
test-cpu-profiler.cc 48 sample->frames_count = 0;
51 sample->frames_count = 1;
55 sample->frames_count = 2;
246 sample->frames_count = i::TickSample::kMaxFramesCount;
247 for (int i = 0; i < sample->frames_count; ++i) {
test-log-stack-tracer.cc 309 CHECK_GT(sample.frames_count, base + 1);
359 CHECK_GT(sample.frames_count, base + 1);
test-profile-generator.cc 602 sample1.frames_count = 1;
610 sample2.frames_count = 3;
617 sample3.frames_count = 2;
  /external/chromium_org/v8/test/cctest/
test-profile-generator.cc 420 sample1.frames_count = 1;
428 sample2.frames_count = 3;
435 sample3.frames_count = 2;
485 sample1.frames_count = 1;
492 sample2.frames_count = 3;
498 sample3.frames_count = 2;
527 sample1.frames_count = 1;
test-log-stack-tracer.cc 303 CHECK_GT(sample.frames_count, base + 1);
356 CHECK_GT(sample.frames_count, base + 1);
test-cpu-profiler.cc 73 sample->frames_count = 0;
76 sample->frames_count = 1;
80 sample->frames_count = 2;
288 sample->frames_count = i::TickSample::kMaxFramesCount;
289 for (int i = 0; i < sample->frames_count; ++i) {
    [all...]

Completed in 441 milliseconds