MCPcopy Create free account
hub / github.com/java-native-access/jna / setLong

Method setLong

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

Set value at location being pointed to. This is equivalent to the expression ((jlong )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value long value to set

(long offset, long value)

Source from the content-addressed store, hash-verified

1042 * @param value <code>long</code> value to set
1043 */
1044 public void setLong(long offset, long value) {
1045 Native.setLong(this, this.peer, offset, value);
1046 }
1047
1048 /**
1049 * Set <code>value</code> at location being pointed to. This is equivalent

Callers 2

setValueMethod · 0.95
setNativeLongMethod · 0.95

Calls 1

setLongMethod · 0.95

Tested by

no test coverage detected