Package | Description |
---|---|
org.bytedeco.javacpp |
Contains the main set of classes for JavaCPP at runtime.
|
Modifier and Type | Method and Description |
---|---|
static Object |
Loader.Helper.accessGlobalRef(Pointer globalRef)
Returns an Object from the JNI global reference stored in the Pointer.
|
static void |
Loader.Helper.deleteGlobalRef(Pointer globalRef)
Deletes the JNI global reference stored in the Pointer.
|
static void |
Loader.Helper.loadGlobal(String filename)
Loads all symbols from a library globally, that is
dlopen(filename, RTLD_LAZY | RTLD_GLOBAL) ,
or simply by default with LoadLibrary(filename) on Windows. |
Modifier and Type | Method and Description |
---|---|
protected static long |
Pointer.getDirectBufferAddress(Buffer b)
Returns the starting address of the memory region referenced by the given direct
Buffer . |
static Pointer |
Loader.Helper.newGlobalRef(Object object)
Returns a JNI global reference stored in a Pointer for the given Object.
|
Copyright © 2024. All rights reserved.