(byte[] buf, int idx)
| 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); |
no test coverage detected