Home
last modified time | relevance | path

Searched defs:GuestType (Results 1 – 3 of 3) sorted by relevance

/frameworks/libs/binary_translation/guest_abi/include/berberis/guest_abi/
Dguest_type.h30 class GuestType; variable
49 constexpr GuestType(const StructType& value) : value_(value) {} in GuestType() function
50 constexpr GuestType(StructType&& value) : value_(value) {} in GuestType() function
68 constexpr GuestType(const IntegerType& value) : value_(value) {} in GuestType() function
69 constexpr GuestType(IntegerType&& value) : value_(value) {} in GuestType() function
116 constexpr GuestType(const EnumType& value) : value_(value) {} in GuestType() function
117 constexpr GuestType(EnumType&& value) : value_(value) {} in GuestType() function
135 constexpr GuestType(const FloatingPointType& value) : value_(value) {} in GuestType() function
136 constexpr GuestType(FloatingPointType&& value) : value_(value) {} in GuestType() function
153 constexpr GuestType(void* const& value) : value_(ToGuestAddr(value)) {} in GuestType() function
[all …]
/frameworks/libs/binary_translation/guest_abi/arm64/include/berberis/guest_abi/
Dguest_arguments_arch.h61 using GuestType = typename GuestArgumentInfo<Type>::GuestType; in GuestArgument() local
/frameworks/libs/native_bridge_support/android_api/libandroid/proxy/
Dlibandroid_trampolines.cc47 using GuestType = berberis::Guest_ANativeActivity*; typedef