Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java405 int targetsSize = (int) RawInsnHelper.getUnsignedShortFromTwoBytes(dataInsn.rawBytes, rawPtr); in readSwitchInstruction() local
408 int[] keys = new int[targetsSize]; in readSwitchInstruction()
409 int[] targets = new int[targetsSize]; in readSwitchInstruction()
418 for (int i = 1; i < targetsSize; i++) { in readSwitchInstruction()
424 for (int i = 0; i < targetsSize; i++) { in readSwitchInstruction()
432 for (int i = 0; i < targetsSize; i++) { in readSwitchInstruction()
463 int targetsSize = switchInsn.targets.size(); in updateSwitchInstruction() local
466 int[] targets = new int[targetsSize]; in updateSwitchInstruction()
481 RawInsnHelper.writeUnsignedShortToTwoBytes(dataInsn.rawBytes, rawPtr, targetsSize); in updateSwitchInstruction()
491 for (int i = 0; i < targetsSize; i++) { in updateSwitchInstruction()
[all …]