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

Method getByte

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

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

(long offset)

Source from the content-addressed store, hash-verified

541 * @return the <code>byte</code> value being pointed to
542 */
543 public byte getByte(long offset) {
544 return Native.getByte(this, this.peer, offset);
545 }
546
547 /**
548 * Indirect the native pointer as a pointer to <code>wchar_t</code>. This

Callers 4

testDataTypesMethod · 0.95
getACEsMethod · 0.95
getValueMethod · 0.95
dumpMethod · 0.95

Calls 1

getByteMethod · 0.95

Tested by 1

testDataTypesMethod · 0.76