Uses of Class
org.bytedeco.javacpp.annotation.Raw
-
Packages that use Raw Package Description org.bytedeco.javacpp Contains the main set of classes for JavaCPP at runtime. -
-
Uses of Raw in org.bytedeco.javacpp
Methods in org.bytedeco.javacpp with annotations of type Raw Modifier and Type Method Description static java.lang.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(java.lang.String filename)
Loads all symbols from a library globally, that isdlopen(filename, RTLD_LAZY | RTLD_GLOBAL)
, or simply by default withLoadLibrary(filename)
on Windows.Method parameters in org.bytedeco.javacpp with annotations of type Raw Modifier and Type Method Description protected static long
Pointer. getDirectBufferAddress(java.nio.Buffer b)
Returns the starting address of the memory region referenced by the given directBuffer
.static Pointer
Loader.Helper. newGlobalRef(java.lang.Object object)
Returns a JNI global reference stored in a Pointer for the given Object.
-