|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjnr.ffi.byref.AbstractReference<Address>
jnr.ffi.byref.AddressByReference
public final class AddressByReference
AddressByReference is used when the address of a primitive pointer value must be passed as a parameter to a function.
For example, the following C code,
extern void get_a(void** ap);
void* foo(void) {
void* a;
// pass a reference to 'a' so get_a() can fill it out
get_a(&a);
return a;
}
Would be declared in java as
interface Lib {
void get_a(@Out AddressByReference ap);
}
and used like this
AddressByReference ap = new AddressByReference();
lib.get_a(ap);
System.out.println("a from lib=" + a.getValue());
| Constructor Summary | |
|---|---|
AddressByReference()
Creates a new reference to an integer value |
|
AddressByReference(Address value)
Creates a new reference to an address value |
|
| Method Summary | |
|---|---|
void |
fromNative(Runtime runtime,
Pointer memory,
long offset)
Copies the address value from native memory |
int |
nativeSize(Runtime runtime)
Gets the native size of type of reference |
void |
toNative(Runtime runtime,
Pointer memory,
long offset)
Copies the address value to native memory |
| Methods inherited from class jnr.ffi.byref.AbstractReference |
|---|
checkNull, getValue |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AddressByReference()
public AddressByReference(Address value)
value - the initial native value| Method Detail |
|---|
public void toNative(Runtime runtime,
Pointer memory,
long offset)
runtime - memory - the native memory buffer
public void fromNative(Runtime runtime,
Pointer memory,
long offset)
runtime - memory - the native memory buffer.public int nativeSize(Runtime runtime)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||