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

Method getInt

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

Indirect the native pointer as a pointer to int . This is equivalent to the expression ((jint )((char )Pointer + offset)) . @param offset byte offset from pointer to perform the indirection @return the int value being pointed to

(long offset)

Source from the content-addressed store, hash-verified

577 * @return the <code>int</code> value being pointed to
578 */
579 public int getInt(long offset) {
580 return Native.getInt(this, this.peer, offset);
581 }
582
583 /**
584 * Indirect the native pointer as a pointer to <code>long</code>. This is

Callers 8

testDataTypesMethod · 0.95
getValueMethod · 0.95
fromNativeMethod · 0.95
getValueMethod · 0.95
getNativeLongMethod · 0.95

Calls 1

getIntMethod · 0.95

Tested by 5

testDataTypesMethod · 0.76
fromNativeMethod · 0.76