Searched refs:poolIndex (Results 1 - 9 of 9) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DContainsPoolIndex.java38 public void setPoolIndex(Instruction insn, int poolIndex); argument
H A DFormat22cs.java62 public void setPoolIndex(Instruction insn, int poolIndex) { argument
63 insn.vregC = poolIndex;
H A DFormat31c.java60 public void setPoolIndex(Instruction insn, int poolIndex) { argument
61 insn.vregB = poolIndex;
H A DFormat21c.java61 public void setPoolIndex(Instruction insn, int poolIndex) { argument
62 insn.vregB = poolIndex;
H A DFormat22c.java61 public void setPoolIndex(Instruction insn, int poolIndex) { argument
62 insn.vregC = poolIndex;
H A DFormat35c.java64 public void setPoolIndex(Instruction insn, int poolIndex) { argument
65 insn.vregB = poolIndex;
H A DFormat3rc.java57 public void setPoolIndex(Instruction insn, int poolIndex) { argument
58 insn.vregB = poolIndex;
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DNewInstanceChanger.java147 ContainsPoolIndex poolIndex = ((ContainsPoolIndex)newInstanceInsn.insn.info.format);
149 poolIndex.setPoolIndex(newInstanceInsn.insn, mutation.newInstanceTypeIdx);
181 ContainsPoolIndex poolIndex =((ContainsPoolIndex)insn.insn.info.format);
182 long oldMethodIdx = poolIndex.getPoolIndex(insn.insn);
193 poolIndex.setPoolIndex(insn.insn, mutation.newInstanceTypeIdx);
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DInstruction.java249 long poolIndex = ((ContainsPoolIndex)format).getPoolIndex(this);
250 repr += " meth@" + poolIndex;
280 long poolIndex = ((ContainsPoolIndex)format).getPoolIndex(this);
281 repr += " pool@" + poolIndex;

Completed in 122 milliseconds