Home
last modified time | relevance | path

Searched refs:ucontext_t (Results 1 – 10 of 10) sorted by relevance

/system/core/libbacktrace/
DUnwindCurrent.h42 void GetUnwContextFromUcontext(const ucontext_t* ucontext);
44 bool UnwindFromContext(size_t num_ignore_frames, ucontext_t* ucontext) override;
DBacktraceCurrent.h47 bool Unwind(size_t num_ignore_frames, ucontext_t* ucontext) override;
55 virtual bool UnwindFromContext(size_t num_ignore_frames, ucontext_t* ucontext) = 0;
DThreadEntry.h48 inline ucontext_t* GetUcontext() { return &ucontext_; } in GetUcontext()
65 ucontext_t ucontext_;
DThreadEntry.cpp128 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(sigcontext); in CopyUcontextFromSigcontext()
DUnwindPtrace.h37 bool Unwind(size_t num_ignore_frames, ucontext_t* ucontext) override;
DUnwindCurrent.cpp43 void UnwindCurrent::GetUnwContextFromUcontext(const ucontext_t* ucontext) { in GetUnwContextFromUcontext()
68 bool UnwindCurrent::UnwindFromContext(size_t num_ignore_frames, ucontext_t* ucontext) { in UnwindFromContext()
DUnwindPtrace.cpp50 bool UnwindPtrace::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) { in Unwind()
DBacktraceCurrent.cpp67 bool BacktraceCurrent::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) { in Unwind()
/system/core/include/backtrace/
DBacktrace.h49 typedef __darwin_ucontext ucontext_t; typedef
52 typedef ucontext ucontext_t; typedef
72 virtual bool Unwind(size_t num_ignore_frames, ucontext_t* context = NULL) = 0;
/system/core/debuggerd/test/
DBacktraceMock.h51 virtual bool Unwind(size_t, ucontext_t*) { return false; } in Unwind() argument