Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DPoolIndexChanger.java24 import dexfuzz.rawdex.formats.ContainsPoolIndex;
25 import dexfuzz.rawdex.formats.ContainsPoolIndex.PoolIndexKind;
83 if (mInsn.insn.info.format instanceof ContainsPoolIndex) { in generateCachedPoolIndexInsns()
95 if (mInsn.insn.info.format instanceof ContainsPoolIndex) { in canMutate()
97 ContainsPoolIndex containsPoolIndex = in canMutate()
98 (ContainsPoolIndex)mInsn.insn.info.format; in canMutate()
144 ContainsPoolIndex containsPoolIndex = in generateMutation()
145 (ContainsPoolIndex)poolIndexInsn.insn.info.format; in generateMutation()
183 ContainsPoolIndex containsPoolIndex = in applyMutation()
184 (ContainsPoolIndex) poolIndexInsn.insn.info.format; in applyMutation()
DFieldFlagChanger.java27 import dexfuzz.rawdex.formats.ContainsPoolIndex;
111 ContainsPoolIndex containsPoolIndex = (ContainsPoolIndex) insn.info.format; in generateMutation()
137 ContainsPoolIndex containsPoolIndex = (ContainsPoolIndex) insn.info.format; in applyMutation()
159 ContainsPoolIndex containsPoolIndex = (ContainsPoolIndex) insn.info.format; in isFileDefinedFieldInstruction()
DNewInstanceChanger.java25 import dexfuzz.rawdex.formats.ContainsPoolIndex;
26 import dexfuzz.rawdex.formats.ContainsPoolIndex.PoolIndexKind;
147 ContainsPoolIndex poolIndex = ((ContainsPoolIndex)newInstanceInsn.insn.info.format); in applyMutation()
181 ContainsPoolIndex poolIndex =((ContainsPoolIndex)insn.insn.info.format); in changeInvokeDirect()
DRandomInstructionGenerator.java30 import dexfuzz.rawdex.formats.ContainsPoolIndex;
31 import dexfuzz.rawdex.formats.ContainsPoolIndex.PoolIndexKind;
161 if (fmt instanceof ContainsPoolIndex) { in generateMutation()
163 ContainsPoolIndex containsPoolIndex = (ContainsPoolIndex) fmt; in generateMutation()
231 ContainsPoolIndex containsPoolIndex = (ContainsPoolIndex) fmt; in applyMutation()
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
DContainsPoolIndex.java27 public interface ContainsPoolIndex { interface
DFormat22cs.java25 public class Format22cs extends Format2 implements ContainsVRegs, ContainsPoolIndex {
DFormat31c.java25 public class Format31c extends Format3 implements ContainsVRegs, ContainsPoolIndex {
DFormat3rc.java26 public class Format3rc extends Format3 implements ContainsPoolIndex {
DFormat21c.java26 public class Format21c extends Format2 implements ContainsVRegs, ContainsPoolIndex {
DFormat22c.java26 public class Format22c extends Format2 implements ContainsVRegs, ContainsPoolIndex {
DFormat35c.java26 public class Format35c extends Format3 implements ContainsPoolIndex {
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DInstruction.java22 import dexfuzz.rawdex.formats.ContainsPoolIndex;
249 long poolIndex = ((ContainsPoolIndex)format).getPoolIndex(this); in toString()
279 if (format instanceof ContainsPoolIndex) { in toString()
280 long poolIndex = ((ContainsPoolIndex)format).getPoolIndex(this); in toString()
/art/tools/dexfuzz/src/dexfuzz/program/
DProgram.java59 import dexfuzz.rawdex.formats.ContainsPoolIndex.PoolIndexKind;