MCPcopy Index your code
hub / github.com/facebook/SoLoader / ElfByteChannel

Interface ElfByteChannel

java/com/facebook/soloader/ElfByteChannel.java:22–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20import java.nio.ByteBuffer;
21
22public interface ElfByteChannel extends java.nio.channels.ByteChannel {
23
24 long position() throws IOException;
25
26 ElfByteChannel position(long newPosition) throws IOException;
27
28 int read(ByteBuffer dst) throws IOException;
29
30 int read(ByteBuffer dst, long position) throws IOException;
31
32 long size() throws IOException;
33
34 ElfByteChannel truncate(long size) throws IOException;
35
36 int write(ByteBuffer src) throws IOException;
37}

Callers 27

readMethod · 0.65
readMethod · 0.65
positionMethod · 0.65
readMethod · 0.65
computeFileHashMethod · 0.65
readAllBytesMethod · 0.65
computeFileHashMethod · 0.65
depsChangedMethod · 0.65
copyBytesMethod · 0.65
readMethod · 0.65
computeDsosFromZipMethod · 0.65

Implementers 2

ElfZipFileChanneljava/com/facebook/soloader/ElfZipFileC
ElfFileChanneljava/com/facebook/soloader/ElfFileChan

Calls

no outgoing calls

Tested by

no test coverage detected