Home
last modified time | relevance | path

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

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