HomeSort by relevance Sort by last modified time
    Searched refs:invokeFormatInfo (Results 1 - 5 of 5) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format35mi.java 28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
32 | insn.invokeFormatInfo.vregE));
Format35ms.java 28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
32 | insn.invokeFormatInfo.vregE));
Format35c.java 30 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
32 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
33 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
34 | insn.invokeFormatInfo.vregE));
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Instruction.java 56 public static class InvokeFormatInfo {
83 public InvokeFormatInfo invokeFormatInfo;
105 if (invokeFormatInfo != null) {
106 newInsn.invokeFormatInfo = new InvokeFormatInfo();
107 newInsn.invokeFormatInfo.vregD = invokeFormatInfo.vregD;
108 newInsn.invokeFormatInfo.vregE = invokeFormatInfo.vregE
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
NewMethodCaller.java 25 import dexfuzz.rawdex.Instruction.InvokeFormatInfo;
172 newInsn.insn.invokeFormatInfo = new InvokeFormatInfo();

Completed in 518 milliseconds