Searched refs:last_ebp (Results 1 - 3 of 3) sorted by relevance

/external/google-breakpad/src/client/solaris/handler/
H A Dsolaris_lwp.cc131 void *GetNextFrame(void **last_ebp) { argument
132 void *sp = *last_ebp;
133 if ((unsigned long)sp == (unsigned long)last_ebp)
137 if ((unsigned long)sp - (unsigned long)last_ebp > 100000)
142 void *GetNextFrame(void *last_ebp) { argument
143 return reinterpret_cast<struct frame *>(last_ebp)->fr_savfp;
146 void *GetNextFrame(void **last_ebp) { argument
147 return reinterpret_cast<void*>(last_ebp);
H A Dminidump_generator.cc105 uintptr_t last_ebp = (*gregs)[R_FP]; local
107 uintptr_t last_ebp = (*gregs)[EBP]; local
109 uintptr_t stack_bottom = lwp_lister->GetLwpStackBottom(last_ebp);
110 if (stack_bottom > last_ebp &&
/external/google-breakpad/src/processor/
H A Dstackwalker_x86.cc537 uint32_t last_ebp = last_frame->context.ebp; local
564 if (memory_->GetMemoryAtAddress(last_ebp + 4, &caller_eip) &&
565 memory_->GetMemoryAtAddress(last_ebp, &caller_ebp)) {
566 caller_esp = last_ebp + 8;
596 caller_ebp = last_ebp;

Completed in 36 milliseconds