Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DOpcodes.java63 public Opcode getOpcodeByValue(int opcodeValue) { in getOpcodeByValue() argument
64 switch (opcodeValue) { in getOpcodeByValue()
72 if (opcodeValue >= 0 && opcodeValue < opcodesByValue.length) { in getOpcodeByValue()
73 return opcodesByValue[opcodeValue]; in getOpcodeByValue()
DOpcode.java331 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format) { in Opcode() argument
332 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, 0, (short)-1); in Opcode()
335 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags) { in Opcode() argument
336 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, flags, (short)-1); in Opcode()
339 …Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags, short ju… in Opcode() argument
340 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, flags, jumboOpcodeValue); in Opcode()
343 …Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format)… in Opcode() argument
344 this(opcodeValue, opcodeName, apiConstraints, referenceType, format, 0, (short)-1); in Opcode()
347 …Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format,… in Opcode() argument
348 this(opcodeValue, opcodeName, apiConstraints, referenceType, format, flags, (short)-1); in Opcode()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DDexBackedInstruction.java61 int opcodeValue = reader.peekUbyte(); in readFrom() local
63 if (opcodeValue == 0) { in readFrom()
64 opcodeValue = reader.peekUshort(); in readFrom()
67 Opcode opcode = reader.dexBuf.getOpcodes().getOpcodeByValue(opcodeValue); in readFrom()