Top Inners Fields Constructors Methods
org.python.modules.jffi

public final Class HeapMemory

extends Object
implements Memory
Class Inheritance
All Implemented Interfaces
org.python.modules.jffi.Memory
Imports
com.kenai.jffi.Platform, java.nio.ByteOrder, java.util.Arrays

Nested and Inner Type Summary

Modifier and TypeClass and Description
protected abstract static class
private static class
private static class
private abstract static class
private static class
private static class
private abstract static class

Field Summary

Modifier and TypeField and Description
protected static final int
protected final byte[]
protected static final HeapMemory.ArrayIO
protected final int
protected static final int
protected final int

Constructor Summary

AccessConstructor and Description
public
HeapMemory(byte[] buffer, int offset, int length)

public
HeapMemory(int size)

Method Summary

Modifier and TypeMethod and Description
public final byte[]
public final int
public final int
private final void
checkBounds(long off, long len)

public final void
public final void
get(long
The offset within the memory area to read the bytes.
offset
,
byte[]
The output byte array to place the data.
dst
,
int
The offset within the byte array to start copying.
off
,
int
The length of data to read.
len
)

Implements org.python.modules.jffi.Memory.get.

Reads an array of bytes from the memory area at the specified offset.

public final void
get(long
The offset within the memory area to read the shorts.
offset
,
short[]
The output array to place the data in.
dst
,
int
The offset within the array to start copying.
off
,
int
The number of shorts to read.
len
)

Implements org.python.modules.jffi.Memory.get.

Reads an array of shorts from the memory area at the specified offset.

public final void
get(long
The offset within the memory area to read the ints.
offset
,
int[]
The output array to place the data in.
dst
,
int
The offset within the array to start copying.
off
,
int
The number of ints to read.
len
)

Implements org.python.modules.jffi.Memory.get.

Reads an array of ints from the memory area at the specified offset.

public final void
get(long
The offset within the memory area to read the longs.
offset
,
long[]
The output array to place the data in.
dst
,
int
The offset within the array to start copying.
off
,
int
The number of longs to read.
len
)

Implements org.python.modules.jffi.Memory.get.

Reads an array of longs from the memory area at the specified offset.

public final void
get(long
The offset within the memory area to read the floats.
offset
,
float[]
The output array to place the data in.
dst
,
int
The offset within the array to start copying.
off
,
int
The number of floats to read.
len
)

Implements org.python.modules.jffi.Memory.get.

Reads an array of floats from the memory area at the specified offset.

public final void
get(long
The offset within the memory area to read the doubles.
offset
,
double[]
The output array to place the data in.
dst
,
int
The offset within the array to start copying.
off
,
int
The number of doubles to read.
len
)

Implements org.python.modules.jffi.Memory.get.

Reads an array of doubles from the memory area at the specified offset.

public final long
getAddress(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getAddress.

Reads a pointer value at the specified offset within the memory area.

private static final HeapMemory.ArrayIO
public final byte
getByte(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getByte.

Reads an 8 bit integer value from the memory area.

public final double
getDouble(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getDouble.

Reads a double value from the memory area.

public final float
getFloat(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getFloat.

Reads a float value from the memory area.

public final int
getInt(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getInt.

Reads a 32 bit integer value from the memory area.

public final long
getLong(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getLong.

Reads a 64 bit integer value from the memory area.

public final DirectMemory
getMemory(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getMemory.

Reads a pointer value at the specified offset within the memory area, and wraps it in an abstract memory accessor.

public final long
getNativeLong(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getNativeLong.

Reads a native long integer value from the memory area.

public final short
getShort(long
The offset within the memory area to read the value.
offset
)

Implements org.python.modules.jffi.Memory.getShort.

Reads a 16 bit integer value from the memory area.

public final byte[]
getZeroTerminatedByteArray(long
The offset within the memory area of the start of the string.
offset
)

Implements org.python.modules.jffi.Memory.getZeroTerminatedByteArray.

Reads a zero terminated byte array (e.g. an ascii or utf-8 string)

protected final int
index(long off)

public final int
indexOf(long
The offset within the memory area to start searching.
offset
,
byte
The value to search for.
value
)

Implements org.python.modules.jffi.Memory.indexOf.

Gets the first index within the memory area of a particular 8 bit value.

public final int
indexOf(long
The offset within the memory area to start searching.
offset
,
byte
The value to search for.
value
,
int maxlen)

Implements org.python.modules.jffi.Memory.indexOf.

Gets the first index within the memory area of a particular 8 bit value.

public final boolean
isDirect()

Implements org.python.modules.jffi.Memory.isDirect.

Checks if the memory area is a native memory pointer.

public final boolean
isNull()

Implements org.python.modules.jffi.Memory.isNull.

Checks if the memory area is NULL.

private static final HeapMemory.ArrayIO
private static final HeapMemory.ArrayIO
private static final HeapMemory.ArrayIO
private static final HeapMemory.ArrayIO
public final void
put(long
The offset within the memory area to start writing the bytes.
offset
,
byte[]
The byte array to write to the memory area.
src
,
int
The offset within the byte array to start copying.
off
,
int
The length of data to write.
len
)

Implements org.python.modules.jffi.Memory.put.

Writes an array of bytes to the memory area at the specified offset.

public final void
put(long
The offset within the memory area to start writing the shorts.
offset
,
short[]
The array to write to the memory area.
src
,
int
The offset within the array to start copying.
off
,
int
The number of shorts to write.
len
)

Implements org.python.modules.jffi.Memory.put.

Writes an array of shorts to the memory area at the specified offset.

public final void
put(long
The offset within the memory area to start writing the ints.
offset
,
int[]
The array to write to the memory area.
src
,
int
The offset within the array to start copying.
off
,
int
The number of ints to write.
len
)

Implements org.python.modules.jffi.Memory.put.

Writes an array of ints to the memory area at the specified offset.

public final void
put(long
The offset within the memory area to start writing the longs.
offset
,
long[]
The array to write to the memory area.
src
,
int
The offset within the array to start copying.
off
,
int
The number of longs to write.
len
)

Implements org.python.modules.jffi.Memory.put.

Writes an array of longs to the memory area at the specified offset.

public final void
put(long
The offset within the memory area to start writing the floats.
offset
,
float[]
The array to write to the memory area.
src
,
int
The offset within the array to start copying.
off
,
int
The number of floats to write.
len
)

Implements org.python.modules.jffi.Memory.put.

Writes an array of floats to the memory area at the specified offset.

public final void
put(long
The offset within the memory area to start writing the doubles.
offset
,
double[]
The array to write to the memory area.
src
,
int
The offset within the array to start copying.
off
,
int
The number of doubles to write.
len
)

Implements org.python.modules.jffi.Memory.put.

Writes an array of doubles to the memory area at the specified offset.

public final void
putAddress(long
The offset within the memory area to write the value.
offset
,
Memory
The pointer value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putAddress.

Writes a pointer value to the memory area at the specified offset.

public final void
putAddress(long
The offset within the memory area to write the value.
offset
,
long
The pointer value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putAddress.

Writes a pointer value to the memory area at the specified offset.

public final void
putByte(long
The offset within the memory area to write the value.
offset
,
byte
The 8 bit integer value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putByte.

Writes an 8 bit integer value to the memory area at the specified offset.

public final void
putDouble(long
The offset within the memory area to write the value.
offset
,
double
The 64 bit float value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putDouble.

Writes a 64 bit float value to the memory area at the specified offset.

public final void
putFloat(long
The offset within the memory area to write the value.
offset
,
float
The 32 bit float value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putFloat.

Writes a 32 bit float value to the memory area at the specified offset.

public final void
putInt(long
The offset within the memory area to write the value.
offset
,
int
The 32 bit integer value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putInt.

Writes a 32 bit integer value to the memory area at the specified offset.

public final void
putLong(long
The offset within the memory area to write the value.
offset
,
long
The 64 bit integer value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putLong.

Writes a 64 bit integer value to the memory area at the specified offset.

public final void
putNativeLong(long
The offset within the memory area to write the value.
offset
,
long
The native long integer value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putNativeLong.

Writes a native long integer value to the memory area at the specified offset.

public final void
putShort(long
The offset within the memory area to write the value.
offset
,
short
The 16 bit integer value to write to the memory location.
value
)

Implements org.python.modules.jffi.Memory.putShort.

Writes a 16 bit integer value to the memory area at the specified offset.

public void
putZeroTerminatedByteArray(long
The offset within the memory area of the start of the string.
offset
,
byte[]
The byte array to write to the memory.
bytes
,
int
The offset with the byte array to start copying.
off
,
int
The number of bytes of the byte array to write to the memory area. (not including zero byte)
len
)

Implements org.python.modules.jffi.Memory.putZeroTerminatedByteArray.

Writes a byte array to memory, and appends a zero terminator

public final void
setMemory(long
The offset within the memory area to start writing.
offset
,
long
The number of bytes to set to the value.
size
,
byte
The value to set each byte to.
value
)

Implements org.python.modules.jffi.Memory.setMemory.

Sets the contents of the memory area to the value.

public HeapMemory
slice(long
The offset within the existing memory area to start the new MemoryIO at.
offset
)

Implements org.python.modules.jffi.Memory.slice.

Creates a new MemoryIO pointing to a subset of the memory area of this MemoryIO.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait