op Codes
This method uses opcodes matcher
----------------该方法使用的指令匹配器
opCodes(OpCodesMatcher().opCodes(listOf(0x12, 0x13, 0x14)))
Content copied to clipboard
Return
Parameters
op Codes
opcodes matcher / 指令匹配器
fun opCodes(opCodes: Collection<Int>, matchType: OpCodeMatchType = OpCodeMatchType.Contains, opCodeSize: IntRange? = null): MethodMatcher
This method uses consecutive OP instructions.
----------------该方法使用的连续的 OP 指令。
opCodes(listOf(0x12, 0x13, 0x14), OpCodeMatchType.StartsWith)
Content copied to clipboard
Return
Parameters
op Codes
opcodes / 指令
match Type
match type / 匹配关系
op Code Size
opcodes size / 指令数量
This method uses consecutive OP instructions.
----------------该方法使用的连续的 OP 指令。
opCodes = listOf(0x12, 0x13, 0x14)
Content copied to clipboard