Home
last modified time | relevance | path

Searched refs:RemoteGetArch (Results 1 – 4 of 4) sorted by relevance

/system/unwinding/libunwindstack/tests/
DRegsRemoteTest.cpp83 ASSERT_EQ(ARCH_ARM, Regs::RemoteGetArch(pid_)); in TEST_F()
85 ASSERT_EQ(ARCH_ARM64, Regs::RemoteGetArch(pid_)); in TEST_F()
87 ASSERT_EQ(ARCH_X86, Regs::RemoteGetArch(pid_)); in TEST_F()
89 ASSERT_EQ(ARCH_X86_64, Regs::RemoteGetArch(pid_)); in TEST_F()
91 ASSERT_EQ(ARCH_RISCV64, Regs::RemoteGetArch(pid_)); in TEST_F()
93 ASSERT_EQ(ARCH_NONE, Regs::RemoteGetArch(pid_)); in TEST_F()
100 ASSERT_EQ(ARCH_UNKNOWN, Regs::RemoteGetArch(getpid(), &error_code)); in TEST_F()
/system/unwinding/libunwindstack/include/unwindstack/
DRegs.h85 static ArchEnum RemoteGetArch(pid_t pid, ErrorCode* error_code = nullptr);
/system/unwinding/libunwindstack/
DRegs.cpp87 ArchEnum Regs::RemoteGetArch(pid_t pid, ErrorCode* error_code) { in RemoteGetArch() function in unwindstack::Regs
DAndroidUnwinder.cpp208 arch_ = Regs::RemoteGetArch(pid_, &error.code); in InternalInitialize()