Home | History | Annotate | Download | only in debuggerd

Lines Matching defs:words

251         int scopeFlags, uintptr_t* sp, size_t words, int label) {
252 for (size_t i = 0; i < words; i++) {
318 // Dump a few words before the first frame.
322 // Dump a few words from all successive frames.
339 size_t words = frame->stack_size / sizeof(uint32_t);
340 if (words == 0) {
341 words = 1;
342 } else if (words > STACK_WORDS) {
343 words = STACK_WORDS;
345 dump_stack_segment(context, log, tid, scopeFlags, &sp, words, i);