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

Method readMethodId

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

Source from the content-addressed store, hash-verified

431 }
432
433 public MethodId readMethodId() {
434 int declaringClassIndex = readUnsignedShort();
435 int protoIndex = readUnsignedShort();
436 int nameIndex = readInt();
437 return new MethodId(Dex.this, declaringClassIndex, protoIndex, nameIndex);
438 }
439
440 public ProtoId readProtoId() {
441 int shortyIndex = readInt();

Callers 2

getMethod · 0.80
readMethod · 0.80

Calls 2

readUnsignedShortMethod · 0.95
readIntMethod · 0.95

Tested by

no test coverage detected