Package jnr.ffi.provider
Class InAccessibleMemoryIO
java.lang.Object
jnr.ffi.Pointer
jnr.ffi.provider.AbstractMemoryIO
jnr.ffi.provider.InAccessibleMemoryIO
- Direct Known Subclasses:
ClosureFromNativeConverter.AbstractClosurePointer,IntPointer,NullMemoryIO
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedInAccessibleMemoryIO(Runtime runtime, long address, boolean isDirect) -
Method Summary
Modifier and TypeMethodDescriptionarray()Returns the array that backs this pointer.intReturns the length of this pointer's backing array that is used by this pointer.intReturns the offset within this pointer's backing array of the first element.protected RuntimeExceptionerror()final voidget(long offset, byte[] dst, int off, int len) Bulk get method for multiplebytevalues.final voidget(long offset, double[] dst, int off, int len) Bulk get method for multipledoublevalues.final voidget(long offset, float[] dst, int off, int len) Bulk get method for multiplefloatvalues.final voidget(long offset, int[] dst, int off, int len) Bulk get method for multipleintvalues.final voidget(long offset, long[] dst, int off, int len) Bulk get method for multiplelongvalues.final voidget(long offset, short[] dst, int off, int len) Bulk get method for multipleshortvalues.final bytegetByte(long offset) Reads anbyte(8 bit) value at the given offset.final doublegetDouble(long offset) Reads adouble(64 bit) value at the given offset.final floatgetFloat(long offset) Reads afloat(32 bit) value at the given offset.final intgetInt(long offset) Reads anint(32 bit) value at the given offset.final longgetLong(long offset) Reads along(64 bit) value at the given offset.final longgetLongLong(long offset) Reads along(64 bit) value at the given offset.final PointergetPointer(long offset) Reads anPointervalue at the given offset.final PointergetPointer(long offset, long size) Reads anPointervalue at the given offset.final shortgetShort(long offset) Reads ashort(16 bit) value at the given offset.getString(long offset) Reads anStringvalue at the given offset.Reads aStringvalue at the given offset, using a specificCharsetbooleanhasArray()Indicates whether thisPointerinstance is backed by an array.final intindexOf(long offset, byte value, int maxlen) Returns the location of a byte value within the memory area represented by thisPointer.final voidput(long offset, byte[] dst, int off, int len) Bulk put method for multiplebytevalues.final voidput(long offset, double[] src, int off, int len) Bulk put method for multipledoublevalues.final voidput(long offset, float[] src, int off, int len) Bulk put method for multiplefloatvalues.final voidput(long offset, int[] src, int off, int len) Bulk put method for multipleintvalues.final voidput(long offset, long[] src, int off, int len) Bulk put method for multiplelongvalues.final voidput(long offset, short[] dst, int off, int len) Bulk put method for multipleshortvalues.final voidputByte(long offset, byte value) Writes abyte(8 bit) value at the given offset.final voidputDouble(long offset, double value) Writes adouble(64 bit, double precision) value at the given offset.final voidputFloat(long offset, float value) Writes afloat(32 bit, single precision) value at the given offset.final voidputInt(long offset, int value) Writes anint(32 bit) value at the given offset.final voidputLong(long offset, long value) Writes anative longvalue at the given offset.final voidputLongLong(long offset, long value) Writes along(64 bit) value at the given offset.final voidputPointer(long offset, Pointer value) Writes aPointervalue at the given offset.final voidputShort(long offset, short value) Writes ashort(16 bit) value at the given offset.voidWrites aStringvalue at the given offset, using a specificCharsetfinal voidsetMemory(long offset, long size, byte value) Sets the value of each byte in the memory area represented by thisPointer.Methods inherited from class jnr.ffi.provider.AbstractMemoryIO
checkBounds, checkBounds, getAddress, getInt, getNativeLong, indexOf, putAddress, putAddress, putInt, putNativeLong, slice, slice, transferFrom, transferToMethods inherited from class jnr.ffi.Pointer
address, get, getNullTerminatedPointerArray, getNullTerminatedStringArray, getRuntime, isDirect, newIntPointer, put, size, toString, wrap, wrap, wrap
-
Constructor Details
-
InAccessibleMemoryIO
-
-
Method Details
-
error
-
hasArray
public boolean hasArray()Description copied from class:PointerIndicates whether thisPointerinstance is backed by an array. -
array
Description copied from class:PointerReturns the array that backs this pointer. -
arrayOffset
public int arrayOffset()Description copied from class:PointerReturns the offset within this pointer's backing array of the first element.- Specified by:
arrayOffsetin classPointer- Returns:
- The offset of the first element on the backing array
-
arrayLength
public int arrayLength()Description copied from class:PointerReturns the length of this pointer's backing array that is used by this pointer.- Specified by:
arrayLengthin classPointer- Returns:
- The length of the backing array used
-
getByte
public final byte getByte(long offset) Description copied from class:PointerReads anbyte(8 bit) value at the given offset. -
getShort
public final short getShort(long offset) Description copied from class:PointerReads ashort(16 bit) value at the given offset. -
getInt
public final int getInt(long offset) Description copied from class:PointerReads anint(32 bit) value at the given offset. -
getLong
public final long getLong(long offset) Description copied from class:PointerReads along(64 bit) value at the given offset.- Overrides:
getLongin classAbstractMemoryIO- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be read.- Returns:
- the
longvalue at the offset.
-
getLongLong
public final long getLongLong(long offset) Description copied from class:PointerReads along(64 bit) value at the given offset.- Specified by:
getLongLongin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be read.- Returns:
- the
longvalue at the offset.
-
getFloat
public final float getFloat(long offset) Description copied from class:PointerReads afloat(32 bit) value at the given offset. -
getDouble
public final double getDouble(long offset) Description copied from class:PointerReads adouble(64 bit) value at the given offset. -
putByte
public final void putByte(long offset, byte value) Description copied from class:PointerWrites abyte(8 bit) value at the given offset. -
putShort
public final void putShort(long offset, short value) Description copied from class:PointerWrites ashort(16 bit) value at the given offset. -
putInt
public final void putInt(long offset, int value) Description copied from class:PointerWrites anint(32 bit) value at the given offset. -
putLong
public final void putLong(long offset, long value) Description copied from class:PointerWrites anative longvalue at the given offset.- Overrides:
putLongin classAbstractMemoryIO- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be written.value- thelongvalue to be written.
-
putLongLong
public final void putLongLong(long offset, long value) Description copied from class:PointerWrites along(64 bit) value at the given offset.- Specified by:
putLongLongin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be written.value- thelongvalue to be written.
-
putFloat
public final void putFloat(long offset, float value) Description copied from class:PointerWrites afloat(32 bit, single precision) value at the given offset. -
putDouble
public final void putDouble(long offset, double value) Description copied from class:PointerWrites adouble(64 bit, double precision) value at the given offset. -
get
public final void get(long offset, byte[] dst, int off, int len) Description copied from class:PointerBulk get method for multiplebytevalues. This method reads multiplebytevalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- the array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, byte[] dst, int off, int len) Description copied from class:PointerBulk put method for multiplebytevalues. This method writes multiplebytevalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.dst- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, short[] dst, int off, int len) Description copied from class:PointerBulk get method for multipleshortvalues. This method reads multipleshortvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, short[] dst, int off, int len) Description copied from class:PointerBulk put method for multipleshortvalues. This method writes multipleshortvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.dst- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, int[] dst, int off, int len) Description copied from class:PointerBulk get method for multipleintvalues. This method reads multipleintvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, int[] src, int off, int len) Description copied from class:PointerBulk put method for multipleintvalues. This method writes multipleintvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, long[] dst, int off, int len) Description copied from class:PointerBulk get method for multiplelongvalues. This method reads multiplelongvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, long[] src, int off, int len) Description copied from class:PointerBulk put method for multiplelongvalues. This method writes multiplelongvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, float[] dst, int off, int len) Description copied from class:PointerBulk get method for multiplefloatvalues. This method reads multiplefloatvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, float[] src, int off, int len) Description copied from class:PointerBulk put method for multiplefloatvalues. This method writes multiplefloatvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, double[] dst, int off, int len) Description copied from class:PointerBulk get method for multipledoublevalues. This method reads multipledoublevalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, double[] src, int off, int len) Description copied from class:PointerBulk put method for multipledoublevalues. This method writes multipledoublevalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
getPointer
Description copied from class:PointerReads anPointervalue at the given offset.- Specified by:
getPointerin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be read.size- the maximum size of the memory location the returnedPointerrepresents.- Returns:
- the
Pointervalue read from memory.
-
getPointer
Description copied from class:PointerReads anPointervalue at the given offset.- Specified by:
getPointerin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be read.- Returns:
- the
Pointervalue read from memory.
-
putPointer
Description copied from class:PointerWrites aPointervalue at the given offset.- Specified by:
putPointerin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be written.value- thePointervalue to be written to memory.
-
getString
Description copied from class:PointerReads anStringvalue at the given offset. -
getString
Description copied from class:PointerReads aStringvalue at the given offset, using a specificCharset- Specified by:
getStringin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be read.maxLength- the maximum size of memory to search for a NUL byte.cs- theCharsetto use to decode the string.- Returns:
- the
Stringvalue read from memory.
-
putString
Description copied from class:PointerWrites aStringvalue at the given offset, using a specificCharset- Specified by:
putStringin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be written.string- the string to be written.maxLength- the maximum size of memory to use to store the string.cs- theCharsetto use to decode the string.
-
indexOf
public final int indexOf(long offset, byte value, int maxlen) Description copied from class:PointerReturns the location of a byte value within the memory area represented by thisPointer.- Specified by:
indexOfin classPointer- Parameters:
offset- the offset from the start of the memory location thisPointerrepresents to begin searching.value- thebytevalue to locate.maxlen- the maximum number of bytes to search for the desired value.- Returns:
- the offset from the start of the search area (i.e. relative to the offset parameter), or -1 if not found.
-
setMemory
public final void setMemory(long offset, long size, byte value) Description copied from class:PointerSets the value of each byte in the memory area represented by thisPointer. to a specified value.
-