/system/core/libunwindstack/ |
D | Regs.cpp | 74 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()
|
D | RegsArm64.cpp | 119 Regs* RegsArm64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm64
|
D | RegsArm.cpp | 122 Regs* RegsArm::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm
|
D | RegsMips64.cpp | 120 Regs* RegsMips64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips64
|
D | RegsMips.cpp | 120 Regs* RegsMips::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips
|
D | RegsX86.cpp | 114 Regs* RegsX86::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86
|
D | RegsX86_64.cpp | 134 Regs* RegsX86_64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86_64
|
/system/core/libunwindstack/include/unwindstack/ |
D | RegsMips.h | 57 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsArm64.h | 57 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsArm.h | 57 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsMips64.h | 57 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsX86_64.h | 60 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsX86.h | 60 static Regs* CreateFromUcontext(void* ucontext);
|
D | Regs.h | 81 static Regs* CreateFromUcontext(ArchEnum arch, void* ucontext);
|
/system/core/libbacktrace/ |
D | UnwindStack.cpp | 163 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/ |
D | debuggerd_fallback.cpp | 85 thread.registers.reset(unwindstack::Regs::CreateFromUcontext(arch, ucontext)); in debuggerd_fallback_trace()
|
/system/core/libunwindstack/tests/ |
D | UnwindTest.cpp | 383 std::unique_ptr<Regs> regs(Regs::CreateFromUcontext(Regs::CurrentArch(), ucontext)); in TEST_F()
|
/system/core/debuggerd/ |
D | crash_dump.cpp | 293 regs->reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), in ReadCrashInfo()
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone.cpp | 636 unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); in engrave_tombstone_ucontext()
|