/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 | RegsArm.cpp | 91 Regs* RegsArm::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm
|
D | RegsMips64.cpp | 112 Regs* RegsMips64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips64
|
D | RegsMips.cpp | 112 Regs* RegsMips::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsMips
|
D | RegsX86_64.cpp | 127 Regs* RegsX86_64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86_64
|
D | RegsX86.cpp | 107 Regs* RegsX86::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsX86
|
D | RegsArm64.cpp | 134 Regs* RegsArm64::CreateFromUcontext(void* ucontext) { in CreateFromUcontext() function in unwindstack::RegsArm64
|
/system/core/libunwindstack/include/unwindstack/ |
D | RegsMips.h | 55 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsArm.h | 55 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsMips64.h | 55 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsX86_64.h | 58 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsX86.h | 58 static Regs* CreateFromUcontext(void* ucontext);
|
D | RegsArm64.h | 66 static Regs* CreateFromUcontext(void* ucontext);
|
D | Regs.h | 83 static Regs* CreateFromUcontext(ArchEnum arch, void* ucontext);
|
/system/core/libbacktrace/ |
D | UnwindStack.cpp | 154 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/ |
D | debuggerd_fallback.cpp | 86 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 | 307 regs->reset(unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), in ReadCrashInfo()
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone.cpp | 569 unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); in engrave_tombstone_ucontext()
|