Home
last modified time | relevance | path

Searched refs:ucontext_t (Results 1 – 14 of 14) 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()
DBacktraceOffline.h79 bool Unwind(size_t num_ignore_frames, ucontext_t* context) override;
98 ucontext_t* context_;
DUnwindPtrace.h37 bool Unwind(size_t num_ignore_frames, ucontext_t* ucontext) override;
Dbacktrace_offline_test.cpp50 static ucontext_t GetUContextFromUnwContext(const unw_context_t& unw_context) { in GetUContextFromUnwContext()
51 ucontext_t ucontext; in GetUContextFromUnwContext()
113 ucontext_t ucontext = GetUContextFromUnwContext(arg.unw_context); in OfflineBacktraceFunctionCall()
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()
DBacktraceOffline.cpp132 bool BacktraceOffline::Unwind(size_t num_ignore_frames, ucontext_t* context) { in Unwind()
/system/core/include/backtrace/
DBacktrace.h67 typedef __darwin_ucontext ucontext_t; typedef
70 typedef ucontext ucontext_t; typedef
104 virtual bool Unwind(size_t num_ignore_frames, ucontext_t* context = NULL) = 0;
/system/extras/simpleperf/
Ddwarf_unwind.cpp34 static ucontext_t BuildUContextFromRegs(const RegSet& regs __attribute__((unused))) { in BuildUContextFromRegs()
35 ucontext_t ucontext; in BuildUContextFromRegs()
129 ucontext_t ucontext = BuildUContextFromRegs(regs); in UnwindCallChain()
/system/core/debuggerd/test/
DBacktraceMock.h51 virtual bool Unwind(size_t, ucontext_t*) { return false; } in Unwind() argument