Uses of Annotation Type
org.bytedeco.javacpp.annotation.Name
Packages that use Name
-
Uses of Name in org.bytedeco.javacpp
Classes in org.bytedeco.javacpp with annotations of type NameModifier and TypeClassDescriptionclassThe peer class to native pointers and arrays ofbool.classThe peer class to native pointers and arrays oflong.classThe peer class to native pointers and arrays ofsize_t.Methods in org.bytedeco.javacpp with annotations of type NameModifier and TypeMethodDescriptionstatic ObjectLoader.Helper.accessGlobalRef(Pointer globalRef) Returns an Object from the JNI global reference stored in the Pointer.static PointerReturns the address found under the given name in the "dynamic symbol tables" (Linux, Mac OS X, etc) or the "export tables" (Windows) of all libraries loaded, or null if not found.static longPointer.availablePhysicalBytes()Returns the amount of physical memory that is free according to the operating system, or 0 if unknown.static voidLoader.Helper.deleteGlobalRef(Pointer globalRef) Deletes the JNI global reference stored in the Pointer.protected static longPointer.getDirectBufferAddress(Buffer b) Returns the starting address of the memory region referenced by the given directBuffer.static PointerLoader.Helper.getJavaVM()Returns the JavaVM JNI object, as required by some APIs for initialization.static voidLoader.Helper.loadGlobal(String filename) Loads all symbols from a library globally, that isdlopen(filename, RTLD_LAZY | RTLD_GLOBAL), or simply by default withLoadLibrary(filename)on Windows.static PointerLoader.Helper.newGlobalRef(Object object) Returns a JNI global reference stored in a Pointer for the given Object.static longPointer.physicalBytes()Returns the amount of non-shared physical memory currently used by the whole process, or 0 if unknown.static longPointer.physicalBytesInaccurate(long maxSize) May return a value larger thanPointer.physicalBytes()but less thanmaxSizeto save processing time.static intLoader.Helper.totalChips()Returns the number of CPU chips installed according to the operating system, or 0 if unknown.static intLoader.Helper.totalCores()Returns the number of CPU cores usable according to the operating system, or 0 if unknown.static longPointer.totalPhysicalBytes()Returns the amount of physical memory installed according to the operating system, or 0 if unknown.static intLoader.Helper.totalProcessors()Returns the number of processors configured according to the operating system, or 0 if unknown.private static booleanPointer.trimMemory()Makes sure to return freed memory to the system, as required by Linux, at least.