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