MCPcopy Create free account
hub / github.com/cinit/TMoe / readType

Method readType

app/src/main/java/cc/ioctl/tmoe/util/dex/DexFlow.java:456–460  ·  view source on GitHub ↗
(byte[] buf, int idx)

Source from the content-addressed store, hash-verified

454 }
455
456 public static String readType(byte[] buf, int idx) {
457 int typeIdsOff = readLe32(buf, 0x44);
458 int strIdx = readLe32(buf, typeIdsOff + 4 * idx);
459 return readString(buf, strIdx);
460 }
461
462 public static DexFieldDescriptor readField(byte[] buf, int idx) {
463 int fieldIdsOff = readLe32(buf, 0x54);

Callers 7

getDeclaredDexMethodsMethod · 0.95
guessNewInstanceTypeMethod · 0.95
hasClassInDexMethod · 0.95
readFieldMethod · 0.95
readProtoMethod · 0.95

Calls 2

readLe32Method · 0.95
readStringMethod · 0.95

Tested by

no test coverage detected