Home
last modified time | relevance | path

Searched refs:nVMs (Results 1 – 25 of 93) sorted by relevance

1234

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/runtime/jni/atExit/
H A DlibatExit.c85 int nVMs; in at_exit_handler() local
86 res = JNI_GetCreatedJavaVMs(jvm_p, 1, &nVMs); in at_exit_handler()
89 if (nVMs == 0 && !using_system_exit) { in at_exit_handler()
91 } else if (nVMs == 1 && using_system_exit) { in at_exit_handler()
94 printf("Unexpected number of created VMs: %d\n", nVMs); in at_exit_handler()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/runtime/jni/atExit/
H A DlibatExit.c85 int nVMs; in at_exit_handler() local
86 res = JNI_GetCreatedJavaVMs(jvm_p, 1, &nVMs); in at_exit_handler()
89 if (nVMs == 0 && !using_system_exit) { in at_exit_handler()
91 } else if (nVMs == 1 && using_system_exit) { in at_exit_handler()
94 printf("Unexpected number of created VMs: %d\n", nVMs); in at_exit_handler()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/runtime/jni/atExit/
H A DlibatExit.c85 int nVMs; in at_exit_handler() local
86 res = JNI_GetCreatedJavaVMs(jvm_p, 1, &nVMs); in at_exit_handler()
89 if (nVMs == 0 && !using_system_exit) { in at_exit_handler()
91 } else if (nVMs == 1 && using_system_exit) { in at_exit_handler()
94 printf("Unexpected number of created VMs: %d\n", nVMs); in at_exit_handler()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/runtime/jni/atExit/
H A DlibatExit.c85 int nVMs; in at_exit_handler() local
86 res = JNI_GetCreatedJavaVMs(jvm_p, 1, &nVMs); in at_exit_handler()
89 if (nVMs == 0 && !using_system_exit) { in at_exit_handler()
91 } else if (nVMs == 1 && using_system_exit) { in at_exit_handler()
94 printf("Unexpected number of created VMs: %d\n", nVMs); in at_exit_handler()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/runtime/jni/atExit/
H A DlibatExit.c85 int nVMs; in at_exit_handler() local
86 res = JNI_GetCreatedJavaVMs(jvm_p, 1, &nVMs); in at_exit_handler()
89 if (nVMs == 0 && !using_system_exit) { in at_exit_handler()
91 } else if (nVMs == 1 && using_system_exit) { in at_exit_handler()
94 printf("Unexpected number of created VMs: %d\n", nVMs); in at_exit_handler()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/runtime/jni/atExit/
H A DlibatExit.c85 int nVMs; in at_exit_handler() local
86 res = JNI_GetCreatedJavaVMs(jvm_p, 1, &nVMs); in at_exit_handler()
89 if (nVMs == 0 && !using_system_exit) { in at_exit_handler()
91 } else if (nVMs == 1 && using_system_exit) { in at_exit_handler()
94 printf("Unexpected number of created VMs: %d\n", nVMs); in at_exit_handler()
/dports/math/scilab/scilab-6.1.1/scilab/modules/jvm/src/c/
H A DJVM_commons.c32 typedef jint (JNICALL *JNI_GetCreatedJavaVMsPROC)(JavaVM **vmBuf, jsize BufLen, jsize *nVMs);
57 jint SciJNI_GetCreatedJavaVMs(JavaVM **vmBuf, jsize BufLen, jsize *nVMs) in SciJNI_GetCreatedJavaVMs() argument
61 return (ptr_JNI_GetCreatedJavaVMs)(vmBuf, BufLen, nVMs); in SciJNI_GetCreatedJavaVMs()
H A DJVM_functions.h52 jint SciJNI_GetCreatedJavaVMs(JavaVM **vmBuf, jsize BufLen, jsize *nVMs);
/dports/graphics/py-gdal/gdal-3.3.3/ogr/ogrsf_frmts/mdb/
H A Dogrmdbjackcess.cpp139 jsize nVMs; in Init() local
191 ret = pfnJNI_GetCreatedJavaVMs(vmBuf, 1, &nVMs); in Init()
194 ret = JNI_GetCreatedJavaVMs(vmBuf, 1, &nVMs); in Init()
198 if (ret == JNI_OK && nVMs == 1) in Init()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/ogr/ogrsf_frmts/mdb/
H A Dogrmdbjackcess.cpp139 jsize nVMs; in Init() local
191 ret = pfnJNI_GetCreatedJavaVMs(vmBuf, 1, &nVMs); in Init()
194 ret = JNI_GetCreatedJavaVMs(vmBuf, 1, &nVMs); in Init()
198 if (ret == JNI_OK && nVMs == 1) in Init()
/dports/graphics/gdal/gdal-3.3.3/ogr/ogrsf_frmts/mdb/
H A Dogrmdbjackcess.cpp139 jsize nVMs; in Init() local
191 ret = pfnJNI_GetCreatedJavaVMs(vmBuf, 1, &nVMs); in Init()
194 ret = JNI_GetCreatedJavaVMs(vmBuf, 1, &nVMs); in Init()
198 if (ret == JNI_OK && nVMs == 1) in Init()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/bridge/jni/
H A DJNIUtility.cpp37 static jint KJSGetCreatedJavaVMs(JavaVM** vmBuf, jsize bufLen, jsize* nVMs) in KJSGetCreatedJavaVMs() argument
51 return functionPointer(vmBuf, bufLen, nVMs); in KJSGetCreatedJavaVMs()
/dports/multimedia/libbluray/libbluray-1.3.0/src/libbluray/bdj/
H A Dbdj.c69 typedef jint (JNICALL * fptr_JNI_GetCreatedJavaVMs) (JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
803 jsize nVMs = 0; in _find_jvm() local
806 int result = JNI_GetCreatedJavaVMs_fp(&javavm, 1, &nVMs); in _find_jvm()
807 if (result == JNI_OK && nVMs > 0) { in _find_jvm()
/dports/multimedia/handbrake/libbluray-1.3.0/src/libbluray/bdj/
H A Dbdj.c69 typedef jint (JNICALL * fptr_JNI_GetCreatedJavaVMs) (JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
803 jsize nVMs = 0; in _find_jvm() local
806 int result = JNI_GetCreatedJavaVMs_fp(&javavm, 1, &nVMs); in _find_jvm()
807 if (result == JNI_OK && nVMs > 0) { in _find_jvm()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/native/libjli/
H A Djava.h81 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/bin/
H A Djava.h82 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/bin/
H A Djava.h82 typedef jint (JNICALL *GetCreatedJavaVMs_t)(JavaVM **vmBuf, jsize bufLen, jsize *nVMs);
/dports/devel/upp/upp/bazaar/plugin/gdal/ogr/ogrsf_frmts/mdb/
H A Dogrmdbjackcess.cpp163 jsize nVMs; in Init() local
166 if (JNI_GetCreatedJavaVMs(vmBuf, 1, &nVMs) == JNI_OK && nVMs == 1) in Init()

1234