Searched refs:ucontext_t (Results 1 – 10 of 10) sorted by relevance
42 void GetUnwContextFromUcontext(const ucontext_t* ucontext);44 bool UnwindFromContext(size_t num_ignore_frames, ucontext_t* ucontext) override;
47 bool Unwind(size_t num_ignore_frames, ucontext_t* ucontext) override;55 virtual bool UnwindFromContext(size_t num_ignore_frames, ucontext_t* ucontext) = 0;
48 inline ucontext_t* GetUcontext() { return &ucontext_; } in GetUcontext()65 ucontext_t ucontext_;
128 ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(sigcontext); in CopyUcontextFromSigcontext()
37 bool Unwind(size_t num_ignore_frames, ucontext_t* ucontext) override;
43 void UnwindCurrent::GetUnwContextFromUcontext(const ucontext_t* ucontext) { in GetUnwContextFromUcontext()68 bool UnwindCurrent::UnwindFromContext(size_t num_ignore_frames, ucontext_t* ucontext) { in UnwindFromContext()
50 bool UnwindPtrace::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) { in Unwind()
67 bool BacktraceCurrent::Unwind(size_t num_ignore_frames, ucontext_t* ucontext) { in Unwind()
49 typedef __darwin_ucontext ucontext_t; typedef52 typedef ucontext ucontext_t; typedef72 virtual bool Unwind(size_t num_ignore_frames, ucontext_t* context = NULL) = 0;
51 virtual bool Unwind(size_t, ucontext_t*) { return false; } in Unwind() argument