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)
| 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 |
no test coverage detected