Searched refs:UnwrapHostFunction (Results 1 – 7 of 7) sorted by relevance
73 EXPECT_TRUE(nullptr == UnwrapHostFunction(0)); in TEST_F()75 EXPECT_TRUE(nullptr == UnwrapHostFunction(ToGuestAddr(do_not_wrap_me))); in TEST_F()79 EXPECT_TRUE(wrap_me == UnwrapHostFunction(ToGuestAddr(wrap_me))); in TEST_F()
74 EXPECT_TRUE(nullptr == UnwrapHostFunction(0)); in TEST_F()76 EXPECT_TRUE(nullptr == UnwrapHostFunction(ToGuestAddr(do_not_wrap_me))); in TEST_F()80 EXPECT_TRUE(wrap_me == UnwrapHostFunction(ToGuestAddr(wrap_me))); in TEST_F()
68 EXPECT_EQ(UnwrapHostFunction(0), nullptr); in TEST_F()70 EXPECT_EQ(UnwrapHostFunction(ToGuestAddr(do_not_wrap_me)), nullptr); in TEST_F()74 EXPECT_EQ(UnwrapHostFunction(ToGuestAddr(wrap_me)), wrap_me); in TEST_F()
61 reinterpret_cast<ResultType (*)(ArgumentType...)>(UnwrapHostFunction(ToGuestAddr(func))); in WrapGuestFunctionIfNeeded()71 auto host_func = UnwrapHostFunction(ToGuestAddr(func)); in WrapHostFunctionIfNeeded()
86 } else if (void* func = UnwrapHostFunction(guest_sa->guest_sa_sigaction)) { in ConvertGuestSigactionToHost()99 void* func = UnwrapHostFunction(guest_sa->guest_sa_sigaction); in ConvertGuestSigactionToHost()
49 void* UnwrapHostFunction(GuestAddr pc);
57 void* UnwrapHostFunction(GuestAddr pc) { in UnwrapHostFunction() function