OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:last_ebp
(Results
1 - 3
of
3
) sorted by null
/external/google-breakpad/src/client/solaris/handler/
solaris_lwp.cc
131
void *GetNextFrame(void **
last_ebp
) {
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
) {
143
return reinterpret_cast<struct frame *>(
last_ebp
)->fr_savfp;
146
void *GetNextFrame(void **
last_ebp
) {
147
return reinterpret_cast<void*>(
last_ebp
);
minidump_generator.cc
105
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/
stackwalker_x86.cc
537
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 401 milliseconds