Searched refs:JNI_CreateJavaVM (Results 1 – 7 of 7) sorted by relevance
/libnativehelper/ |
D | JniInvocation.c | 55 jint (*JNI_CreateJavaVM)(JavaVM**, JNIEnv**, void*); member 105 jint JNI_CreateJavaVM(JavaVM** p_vm, JNIEnv** p_env, void* vm_args) { in JNI_CreateJavaVM() function 106 ALOG_ALWAYS_FATAL_IF(NULL == g_impl.JNI_CreateJavaVM, "Runtime library not loaded."); in JNI_CreateJavaVM() 107 return g_impl.JNI_CreateJavaVM(p_vm, p_env, vm_args); in JNI_CreateJavaVM() 215 instance->JNI_CreateJavaVM = (jint (*)(JavaVM**, JNIEnv**, void*)) JNI_CreateJavaVM_; in JniInvocationInit()
|
D | libnativehelper.map.txt | 9 JNI_CreateJavaVM;
|
D | libnativehelper_lazy.c | 115 BIND_SYMBOL(JNI_CreateJavaVM); in InitializeOnce() 194 INVOKE_METHOD(JNI_CreateJavaVM, M, p_vm, p_env, vm_args); in JNI_CreateJavaVMImpl() 197 jint JNI_CreateJavaVM(JavaVM** p_vm, JNIEnv** p_env, void* vm_args) { in JNI_CreateJavaVM() function
|
/libnativehelper/tests_mts/ |
D | README.md | 8 they cover JNI_CreateJavaVM(). These APIs have been invoked before the test 28 JNI_CreateJavaVM 35 be correctly bound. `JNI_CreateJavaVM()` cannot be called in these tests
|
/libnativehelper/tests/ |
D | libnativehelper_lazy_test.cpp | 62 EXPECT_DEATH(JNI_CreateJavaVM(&vm, &env, NULL), kLoadFailed); in TEST_F()
|
D | JniInvocation_test.cpp | 62 EXPECT_DEATH(JNI_CreateJavaVM(&vm, &env, nullptr), "Runtime library not loaded."); in TEST()
|
/libnativehelper/include_jni/ |
D | jni.h | 1102 jint JNI_CreateJavaVM(JavaVM**, JNIEnv**, void*);
|