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

Method setByte

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

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

(long offset, byte value)

Source from the content-addressed store, hash-verified

990 * @param value <code>byte</code> value to set
991 */
992 public void setByte(long offset, byte value) {
993 Native.setByte(this, this.peer, offset, value);
994 }
995
996 /**
997 * Set <code>value</code> at location being pointed to. This is equivalent

Callers 2

setValueMethod · 0.95
setStringMethod · 0.95

Calls 1

setByteMethod · 0.95

Tested by

no test coverage detected