MCPcopy Index your code
hub / github.com/java-native-access/jna / write

Method write

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

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

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

Source from the content-addressed store, hash-verified

254 * copied
255 */
256 public void write(long offset, byte[] buf, int index, int length) {
257 Native.write(this, this.peer, offset, buf, index, length);
258 }
259
260 /**
261 * Indirect the native pointer, copying <em>into</em> memory pointed to by

Callers 3

updateW32Method · 0.95
writeArrayMethod · 0.95
setStringMethod · 0.95

Calls 2

writeMethod · 0.95
setPointerMethod · 0.95

Tested by

no test coverage detected