Home
last modified time | relevance | path

Searched refs:CreateFromUcontext (Results 1 – 19 of 19) sorted by relevance

/system/core/libunwindstack/
DRegs.cpp74 Regs* Regs::CreateFromUcontext(ArchEnum arch, void* ucontext) { in CreateFromUcontext() function in unwindstack::Regs
77 return RegsX86::CreateFromUcontext(ucontext); in CreateFromUcontext()
79 return RegsX86_64::CreateFromUcontext(ucontext); in CreateFromUcontext()
81 return RegsArm::CreateFromUcontext(ucontext); in CreateFromUcontext()
83 return RegsArm64::CreateFromUcontext(ucontext); in CreateFromUcontext()
85 return RegsMips::CreateFromUcontext(ucontext); in CreateFromUcontext()
87 return RegsMips64::CreateFromUcontext(ucontext); in CreateFromUcontext()
DRegsArm.cpp91 Regs* RegsArm::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm
DRegsMips64.cpp112 Regs* RegsMips64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips64
DRegsMips.cpp112 Regs* RegsMips::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips
DRegsX86_64.cpp127 Regs* RegsX86_64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86_64
DRegsX86.cpp107 Regs* RegsX86::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86
DRegsArm64.cpp134 Regs* RegsArm64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm64
/system/core/libunwindstack/include/unwindstack/
DRegsMips.h55 static Regs* CreateFromUcontext(void* ucontext);
DRegsArm.h55 static Regs* CreateFromUcontext(void* ucontext);
DRegsMips64.h55 static Regs* CreateFromUcontext(void* ucontext);
DRegsX86_64.h58 static Regs* CreateFromUcontext(void* ucontext);
DRegsX86.h58 static Regs* CreateFromUcontext(void* ucontext);
DRegsArm64.h66 static Regs* CreateFromUcontext(void* ucontext);
DRegs.h83 static Regs* CreateFromUcontext(ArchEnum arch, void* ucontext);
/system/core/libbacktrace/
DUnwindStack.cpp154 regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); in UnwindFromContext()
176 regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), context)); in Unwind()
/system/core/debuggerd/handler/
Ddebuggerd_fallback.cpp86 thread.registers.reset(unwindstack::Regs::CreateFromUcontext(arch, ucontext)); in debuggerd_fallback_trace()
/system/core/libunwindstack/tests/
DUnwindTest.cpp383 std::unique_ptr<Regs> regs(Regs::CreateFromUcontext(Regs::CurrentArch(), ucontext)); in TEST_F()
/system/core/debuggerd/
Dcrash_dump.cpp307 regs->reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), in ReadCrashInfo()
/system/core/debuggerd/libdebuggerd/
Dtombstone.cpp569 unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); in engrave_tombstone_ucontext()