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

Method getLong

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

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

(long offset)

Source from the content-addressed store, hash-verified

589 * @return the <code>long</code> value being pointed to
590 */
591 public long getLong(long offset) {
592 return Native.getLong(this, this.peer, offset);
593 }
594
595 /**
596 * Indirect the native pointer as a pointer to <code>long</code>. This is

Callers 2

getValueMethod · 0.95
getNativeLongMethod · 0.95

Calls 1

getLongMethod · 0.95

Tested by

no test coverage detected