Searched refs:DexMemAccessType (Results 1 – 1 of 1) sorted by relevance
37 enum DexMemAccessType : uint8_t { enum48 std::ostream& operator<<(std::ostream& os, const DexMemAccessType& type);149 constexpr DexMemAccessType IGetMemAccessType(Instruction::Code code) { in IGetMemAccessType()151 return static_cast<DexMemAccessType>(code - Instruction::IGET); in IGetMemAccessType()154 constexpr DexMemAccessType IPutMemAccessType(Instruction::Code code) { in IPutMemAccessType()156 return static_cast<DexMemAccessType>(code - Instruction::IPUT); in IPutMemAccessType()159 constexpr DexMemAccessType SGetMemAccessType(Instruction::Code code) { in SGetMemAccessType()161 return static_cast<DexMemAccessType>(code - Instruction::SGET); in SGetMemAccessType()164 constexpr DexMemAccessType SPutMemAccessType(Instruction::Code code) { in SPutMemAccessType()166 return static_cast<DexMemAccessType>(code - Instruction::SPUT); in SPutMemAccessType()[all …]