Searched defs:words (Results 1 - 1 of 1) sorted by relevance

/system/core/debuggerd/
H A Dtombstone.c251 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); local
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,
250 dump_stack_segment(const ptrace_context_t* context, log_t* log, pid_t tid, int scopeFlags, uintptr_t* sp, size_t words, int label) argument
[all...]

Completed in 193 milliseconds