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

/external/google-breakpad/src/client/solaris/handler/
H A Dexception_handler.cc220 uintptr_t sighandler_ebp,
246 minidump_path, signo, sighandler_ebp, sig_ctx);
219 InternalWriteMinidump(int signo, uintptr_t sighandler_ebp, ucontext_t **sig_ctx) argument
H A Dminidump_generator.cc71 uintptr_t sighandler_ebp; member in struct:__anon5088::WriterArgument
696 if (writer_args->sighandler_ebp != 0 &&
697 writer_args->lwp_lister->FindSigContext(writer_args->sighandler_ebp,
755 uintptr_t sighandler_ebp,
775 argument.sighandler_ebp = sighandler_ebp;
753 WriteMinidumpToFile(const char *file_pathname, int signo, uintptr_t sighandler_ebp, ucontext_t **sig_ctx) const argument
H A Dsolaris_lwp.cc405 bool SolarisLwp::FindSigContext(uintptr_t sighandler_ebp, argument
415 reinterpret_cast<void*>(sighandler_ebp)));
416 *sig_ctx = reinterpret_cast<ucontext_t*>(sighandler_ebp + sizeof (struct frame));
418 if (sig_esp < previous_ebp && sig_esp > sighandler_ebp)
423 reinterpret_cast<void**>(sighandler_ebp)));
424 *sig_ctx = reinterpret_cast<ucontext_t*>(sighandler_ebp + sizeof (struct frame) +
428 sighandler_ebp = previous_ebp;
430 } while(previous_ebp != sig_ebp && sighandler_ebp != 0 &&
431 IsAddressMapped(sighandler_ebp) && depth_counter < MAX_STACK_DEPTH);

Completed in 152 milliseconds