MCPcopy Index your code
hub / github.com/java-native-access/jna / setInt

Method setInt

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

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

(long offset, int value)

Source from the content-addressed store, hash-verified

1029 * @param value <code>int</code> value to set
1030 */
1031 public void setInt(long offset, int value) {
1032 Native.setInt(this, this.peer, offset, value);
1033 }
1034
1035 /**
1036 * Set <code>value</code> at location being pointed to. This is equivalent

Callers 5

testAutoFreeMemoryMethod · 0.95
testAccessViolationMethod · 0.95
setValueMethod · 0.95
setNativeLongMethod · 0.95

Calls 1

setIntMethod · 0.95

Tested by 3

testAutoFreeMemoryMethod · 0.76
testAccessViolationMethod · 0.76