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()
DRegsArm64.cpp119 Regs* RegsArm64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm64
DRegsArm.cpp122 Regs* RegsArm::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm
DRegsMips64.cpp120 Regs* RegsMips64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips64
DRegsMips.cpp120 Regs* RegsMips::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips
DRegsX86.cpp114 Regs* RegsX86::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86
DRegsX86_64.cpp134 Regs* RegsX86_64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86_64
/system/core/libunwindstack/include/unwindstack/
DRegsMips.h57 static Regs* CreateFromUcontext(void* ucontext);
DRegsArm64.h57 static Regs* CreateFromUcontext(void* ucontext);
DRegsArm.h57 static Regs* CreateFromUcontext(void* ucontext);
DRegsMips64.h57 static Regs* CreateFromUcontext(void* ucontext);
DRegsX86_64.h60 static Regs* CreateFromUcontext(void* ucontext);
DRegsX86.h60 static Regs* CreateFromUcontext(void* ucontext);
DRegs.h81 static Regs* CreateFromUcontext(ArchEnum arch, void* ucontext);
/system/core/libbacktrace/
DUnwindStack.cpp163 regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); in UnwindFromContext()
185 regs.reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), context)); in Unwind()
224 std::unique_ptr<unwindstack::Regs> regs(unwindstack::Regs::CreateFromUcontext(arch, ucontext)); in Unwind()
/system/core/debuggerd/handler/
Ddebuggerd_fallback.cpp85 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.cpp293 regs->reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), in ReadCrashInfo()
/system/core/debuggerd/libdebuggerd/
Dtombstone.cpp636 unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); in engrave_tombstone_ucontext()