MCPcopy Create free account
hub / github.com/Youlor/unpacker / readFieldId

Method readFieldId

dexfixer/src/com/android/dex/Dex.java:426–431  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

424 }
425
426 public FieldId readFieldId() {
427 int declaringClassIndex = readUnsignedShort();
428 int typeIndex = readUnsignedShort();
429 int nameIndex = readInt();
430 return new FieldId(Dex.this, declaringClassIndex, typeIndex, nameIndex);
431 }
432
433 public MethodId readMethodId() {
434 int declaringClassIndex = readUnsignedShort();

Callers 2

getMethod · 0.80
readMethod · 0.80

Calls 2

readUnsignedShortMethod · 0.95
readIntMethod · 0.95

Tested by

no test coverage detected