MCPcopy Create free account
hub / github.com/java-native-access/jna / read

Method read

src/com/sun/jna/Pointer.java:139–141  ·  view source on GitHub ↗

Indirect the native pointer, copying from memory pointed to by native pointer, into the specified array. @param offset byte offset from pointer from which data is copied @param buf byte array into which data is copied @param index array index to which data is copied @param

(long offset, byte[] buf, int index, int length)

Source from the content-addressed store, hash-verified

137 * @param length number of elements from native pointer that must be copied
138 */
139 public void read(long offset, byte[] buf, int index, int length) {
140 Native.read(this, this.peer, offset, buf, index, length);
141 }
142
143 /**
144 * Indirect the native pointer, copying <em>from</em> memory pointed to by

Callers 11

PointerToIShellFolderMethod · 0.95
PointerToIEnumIDListMethod · 0.95
readArrayMethod · 0.95
getByteArrayMethod · 0.95
getCharArrayMethod · 0.95
getShortArrayMethod · 0.95
getIntArrayMethod · 0.95
getLongArrayMethod · 0.95
getFloatArrayMethod · 0.95
getDoubleArrayMethod · 0.95
getPointerArrayMethod · 0.95

Calls 2

readMethod · 0.95
getPointerMethod · 0.95

Tested by

no test coverage detected