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

Method readShortArray

dexfixer/src/com/android/dex/Dex.java:370–379  ·  view source on GitHub ↗
(int length)

Source from the content-addressed store, hash-verified

368 }
369
370 public short[] readShortArray(int length) {
371 if (length == 0) {
372 return EMPTY_SHORT_ARRAY;
373 }
374 short[] result = new short[length];
375 for (int i = 0; i < length; i++) {
376 result[i] = readShort();
377 }
378 return result;
379 }
380
381 public int readUleb128() {
382 return Leb128.readUnsignedLeb128(this);

Callers 2

readTypeListMethod · 0.95
readCodeMethod · 0.95

Calls 1

readShortMethod · 0.95

Tested by

no test coverage detected