Lines Matching refs:unwindstack
26 case unwindstack::ARCH_ARM: { in GetRegisters()
27 std::unique_ptr<unwindstack::RegsArm> regs = std::make_unique<unwindstack::RegsArm>(); in GetRegisters()
30 case unwindstack::ARCH_ARM64: { in GetRegisters()
31 std::unique_ptr<unwindstack::RegsArm64> regs = std::make_unique<unwindstack::RegsArm64>(); in GetRegisters()
34 case unwindstack::ARCH_X86: { in GetRegisters()
35 std::unique_ptr<unwindstack::RegsX86> regs = std::make_unique<unwindstack::RegsX86>(); in GetRegisters()
38 case unwindstack::ARCH_X86_64: { in GetRegisters()
39 std::unique_ptr<unwindstack::RegsX86_64> regs = std::make_unique<unwindstack::RegsX86_64>(); in GetRegisters()
42 case unwindstack::ARCH_MIPS: { in GetRegisters()
43 std::unique_ptr<unwindstack::RegsMips> regs = std::make_unique<unwindstack::RegsMips>(); in GetRegisters()
46 case unwindstack::ARCH_MIPS64: { in GetRegisters()
47 std::unique_ptr<unwindstack::RegsMips64> regs = std::make_unique<unwindstack::RegsMips64>(); in GetRegisters()
50 case unwindstack::ARCH_UNKNOWN: in GetRegisters()
52 std::unique_ptr<unwindstack::RegsX86_64> regs = std::make_unique<unwindstack::RegsX86_64>(); in GetRegisters()