Set value at location being pointed to. This is equivalent to the expression ((void )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value Pointer holding the actual poin
(long offset, Pointer value)
| 1100 | * pointer. |
| 1101 | */ |
| 1102 | public void setPointer(long offset, Pointer value) { |
| 1103 | Native.setPointer(this, this.peer, offset, value != null ? value.peer : 0); |
| 1104 | } |
| 1105 | |
| 1106 | /** |
| 1107 | * Copy string <code>value</code> to the location being pointed to as a |
no test coverage detected