MCPcopy Create free account
hub / github.com/java-native-access/jna / indexOf

Method indexOf

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

Returns the offset of the given value in memory from the given offset, or -1 if the value is not found.

(long offset, byte value)

Source from the content-addressed store, hash-verified

124 * or -1 if the value is not found.
125 */
126 public long indexOf(long offset, byte value) {
127 return Native.indexOf(this, this.peer, offset, value);
128 }
129
130 /**
131 * Indirect the native pointer, copying <em>from</em> memory pointed to by

Calls 1

indexOfMethod · 0.95