|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CLong | |
---|---|
org.bridj | BridJ core classes and C runtime (Pointer , BridJ , SizeT , Platform , LastError ...). |
Uses of CLong in org.bridj |
---|
Methods in org.bridj that return CLong | |
---|---|
static CLong |
CLong.valueOf(long value)
|
Methods in org.bridj that return types with arguments of type CLong | |
---|---|
static Pointer<CLong> |
Pointer.allocateCLong()
Allocate enough memory for a CLong value and return a pointer to it. |
static Pointer<CLong> |
Pointer.allocateCLongs(long arrayLength)
Allocate enough memory for arrayLength CLong values and return a pointer to that memory. |
static PointerIO<CLong> |
PointerIO.getCLongInstance()
|
static Pointer<CLong> |
Pointer.pointerToCLong(CLong value)
Allocate enough memory for a single CLong value, copy the value provided in argument into it and return a pointer to that memory. |
static Pointer<CLong> |
Pointer.pointerToCLong(long value)
Allocate enough memory for a single CLong value, copy the value provided in argument into it and return a pointer to that memory. |
static Pointer<CLong> |
Pointer.pointerToCLongs(CLong... values)
Allocate enough memory for values.length CLong values, copy the values provided as argument into it and return a pointer to that memory. |
static Pointer<CLong> |
Pointer.pointerToCLongs(int[] values)
Allocate enough memory for values.length CLong values, copy the values provided as argument into it and return a pointer to that memory. |
static Pointer<CLong> |
Pointer.pointerToCLongs(long... values)
Allocate enough memory for values.length CLong values, copy the values provided as argument into it and return a pointer to that memory. |
Methods in org.bridj with parameters of type CLong | |
---|---|
static Pointer<CLong> |
Pointer.pointerToCLong(CLong value)
Allocate enough memory for a single CLong value, copy the value provided in argument into it and return a pointer to that memory. |
static Pointer<CLong> |
Pointer.pointerToCLongs(CLong... values)
Allocate enough memory for values.length CLong values, copy the values provided as argument into it and return a pointer to that memory. |
Pointer<T> |
Pointer.setCLong(CLong value)
Write a CLong value to the pointed memory location |
Pointer<T> |
Pointer.setCLongAtOffset(long byteOffset,
CLong value)
Deprecated. Avoid using the byte offset methods variants unless you know what you're doing (may cause alignment issues). Please favour Pointer.setCLong(CLong) over this method. |
Pointer<T> |
Pointer.setCLongs(CLong[] values)
Write an array of CLong values to the pointed memory location |
Pointer<T> |
Pointer.setCLongsAtOffset(long byteOffset,
CLong... values)
Deprecated. Avoid using the byte offset methods variants unless you know what you're doing (may cause alignment issues). Please favour Pointer.setCLongs(CLong...) over this method. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |