Searched refs:frames_count (Results 1 – 8 of 8) sorted by relevance
/external/webkit/V8Binding/v8/src/ |
D | platform-macos.cc | 253 int frames_count = backtrace(addresses, frames_size); in StackWalk() local 256 symbols = backtrace_symbols(addresses, frames_count); in StackWalk() 262 for (int i = 0; i < frames_count; i++) { in StackWalk() 277 return frames_count; in StackWalk()
|
D | platform-win32.cc | 1218 int frames_count = 0; in StackWalk() local 1222 while (frames_count < frames_size) { in StackWalk() 1237 frames[frames_count].address = in StackWalk() 1266 SNPrintF(MutableCStrVector(frames[frames_count].text, in StackWalk() 1272 SNPrintF(MutableCStrVector(frames[frames_count].text, in StackWalk() 1278 frames[frames_count].text[kStackWalkMaxTextLen - 1] = '\0'; in StackWalk() 1281 frames[frames_count].text[0] = '\0'; in StackWalk() 1293 frames_count++; in StackWalk() 1297 return frames_count; in StackWalk()
|
D | platform-freebsd.cc | 270 int frames_count = backtrace(addresses, frames_size); in StackWalk() local 273 symbols = backtrace_symbols(addresses, frames_count); in StackWalk() 279 for (int i = 0; i < frames_count; i++) { in StackWalk() 293 return frames_count; in StackWalk()
|
D | platform-linux.cc | 295 int frames_count = backtrace(addresses, frames_size); in StackWalk() local 298 symbols = backtrace_symbols(addresses, frames_count); in StackWalk() 304 for (int i = 0; i < frames_count; i++) { in StackWalk() 318 return frames_count; in StackWalk()
|
D | platform.h | 497 TickSample() : pc(0), sp(0), fp(0), state(OTHER), frames_count(0) {} in TickSample() 504 int frames_count; // Number of captured frames. variable
|
D | log.cc | 143 sample->frames_count = 0; in Trace() 150 sample->frames_count = 0; in Trace() 164 sample->frames_count = i; in Trace() 946 for (int i = 0; i < sample->frames_count; ++i) { in TickEvent()
|
D | runtime.cc | 6624 int frames_count = OS::StackWalk(frames); in Runtime_GetCFrames() local 6625 if (frames_count == OS::kStackWalkError) { in Runtime_GetCFrames() 6631 Handle<FixedArray> frames_array = Factory::NewFixedArray(frames_count); in Runtime_GetCFrames() 6632 for (int i = 0; i < frames_count; i++) { in Runtime_GetCFrames()
|
/external/webkit/V8Binding/v8/test/cctest/ |
D | test-log-stack-tracer.cc | 299 CHECK_GT(sample.frames_count, 1); in TEST() 323 CHECK_GT(sample.frames_count, 1); in TEST()
|