Searched defs:insn (Results 1 - 25 of 49) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMInsn.java29 public Instruction insn; field in class:MInsn
48 newInsn.insn = insn.clone();
62 insn.toString());
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DContainsConst.java27 public long getConst(Instruction insn); argument
29 public void setConst(Instruction insn, long constant); argument
H A DContainsTarget.java26 public long getTarget(Instruction insn); argument
28 public void setTarget(Instruction insn, long target); argument
H A DAbstractFormat.java51 public abstract void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException; argument
H A DContainsPoolIndex.java36 public int getPoolIndex(Instruction insn); argument
38 public void setPoolIndex(Instruction insn, int poolIndex); argument
H A DFormat00x.java31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
H A DFormat1.java31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
H A DFormat10t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
48 public long getTarget(Instruction insn) { argument
49 return insn.vregA;
53 public void setTarget(Instruction insn, long target) { argument
54 insn.vregA = target;
H A DFormat10x.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
H A DFormat11n.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
48 public long getConst(Instruction insn) { argument
49 return insn.vregB;
53 public void setConst(Instruction insn, long constant) { argument
54 insn.vregB = constant;
H A DFormat11x.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
H A DFormat12x.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
H A DFormat2.java31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
H A DFormat20bc.java30 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
31 file.writeByte((byte) insn.info.value);
32 file.writeByte((byte) insn.vregA);
33 file.writeUShort((short) insn.vregB);
H A DFormat20t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
29 file.writeUShort((short) insn.vregA);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregA;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregA = target;
H A DFormat21h.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
49 public long getConst(Instruction insn) { argument
50 return insn.vregB;
54 public void setConst(Instruction insn, long constant) { argument
55 insn.vregB = constant;
H A DFormat21s.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
49 public long getConst(Instruction insn) { argument
50 return insn.vregB;
54 public void setConst(Instruction insn, long constant) { argument
55 insn.vregB = constant;
H A DFormat21t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregB;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregB = target;
H A DFormat22b.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeByte((byte) insn.vregB);
30 file.writeByte((byte) insn.vregC);
50 public long getConst(Instruction insn) { argument
51 return insn.vregC;
55 public void setConst(Instruction insn, long constant) { argument
56 insn.vregC = constant;
H A DFormat22s.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
29 file.writeUShort((short) insn.vregC);
49 public long getConst(Instruction insn) { argument
50 return insn.vregC;
54 public void setConst(Instruction insn, long constant) { argument
55 insn.vregC = constant;
H A DFormat22t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
29 file.writeUShort((short) insn.vregC);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregC;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregC = target;
H A DFormat22x.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
H A DFormat23x.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeByte((byte) insn.vregB);
30 file.writeByte((byte) insn.vregC);
H A DFormat3.java31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
H A DFormat30t.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { argument
27 file.writeByte((byte) insn.info.value);
29 file.writeUInt((int) insn.vregA);
49 public long getTarget(Instruction insn) { argument
50 return insn.vregA;
54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregA = target;

Completed in 1965 milliseconds

12