(ElfByteChannel bc, ByteBuffer bb, long offset)
| 324 | } |
| 325 | |
| 326 | private static short getu8(ElfByteChannel bc, ByteBuffer bb, long offset) throws IOException { |
| 327 | read(bc, bb, 1, offset); |
| 328 | return (short) (bb.get() & 0xFF); // signed -> unsigned |
| 329 | } |
| 330 | |
| 331 | @DoNotStripAny |
| 332 | protected static class ElfError extends UnsatisfiedLinkError { |
no test coverage detected