Indirect the native pointer as a pointer to pointer. This is equivalent to the expression ((void )((char )Pointer + offset)) . @param offset byte offset from pointer to perform the indirection @return a Pointer equivalent of the pointer value being pointed to, or null</
(long offset)
| 639 | * <code>NULL</code>; |
| 640 | */ |
| 641 | public Pointer getPointer(long offset) { |
| 642 | return Native.getPointer(peer + offset); |
| 643 | } |
| 644 | |
| 645 | /** |
| 646 | * Get a ByteBuffer mapped to the memory pointed to by the pointer, |