/external/chromium_org/third_party/android_crazy_linker/src/src/ |
crazy_linker_api.cpp | 39 java_vm(NULL), 52 void* java_vm; member in struct:crazy_context_t 127 void* java_vm, 129 context->java_vm = java_vm; 134 void** java_vm, 136 *java_vm = context->java_vm; 213 if (context->java_vm != NULL && wrap->IsCrazy()) { 216 context->java_vm, context->minimum_jni_version, &context->error)) [all...] |
crazy_linker_shared_library.h | 128 // exists, call it with |java_vm| as the first parameter. If the 131 // |java_vm| to call 'JNI_OnUnload' at unload time, if present. 132 bool SetJavaVM(void* java_vm, int minimum_jni_version, Error* error); 135 // to SetJavaVM() before. This will pass the same |java_vm| value to the
|
crazy_linker_shared_library.cpp | 400 bool SharedLibrary::SetJavaVM(void* java_vm, 403 if (java_vm == NULL) 412 int jni_version = (*jni_onload)(java_vm, NULL); 422 java_vm_ = java_vm;
|
/ndk/sources/android/crazy_linker/src/ |
crazy_linker_api.cpp | 39 java_vm(NULL), 52 void* java_vm; member in struct:crazy_context_t 127 void* java_vm, 129 context->java_vm = java_vm; 134 void** java_vm, 136 *java_vm = context->java_vm; 213 if (context->java_vm != NULL && wrap->IsCrazy()) { 216 context->java_vm, context->minimum_jni_version, &context->error)) [all...] |
crazy_linker_shared_library.h | 128 // exists, call it with |java_vm| as the first parameter. If the 131 // |java_vm| to call 'JNI_OnUnload' at unload time, if present. 132 bool SetJavaVM(void* java_vm, int minimum_jni_version, Error* error); 135 // to SetJavaVM() before. This will pass the same |java_vm| value to the
|
crazy_linker_shared_library.cpp | 400 bool SharedLibrary::SetJavaVM(void* java_vm, 403 if (java_vm == NULL) 412 int jni_version = (*jni_onload)(java_vm, NULL); 422 java_vm_ = java_vm;
|
/frameworks/base/core/jni/ |
android_hardware_location_ActivityRecognitionHardware.cpp | 47 JavaVM* java_vm = android::AndroidRuntime::getJavaVM(); local 48 assert(java_vm != NULL); 56 jint result = java_vm->AttachCurrentThread(env, &args); 65 JavaVM* java_vm = android::AndroidRuntime::getJavaVM(); local 66 assert(java_vm != NULL); 68 jint result = java_vm->DetachCurrentThread();
|
/external/chromium_org/third_party/android_crazy_linker/src/include/ |
crazy_linker.h | 114 // Record the value of |java_vm| inside of |context|. If this is not NULL, 117 // it, passing the value of |java_vm| to it. If the function returns with 121 // The |java_vm| field is also saved in the crazy_library_t object, and 124 void* java_vm, 128 // A value of NUMM in |*java_vm| means the feature is disabled. 130 void** java_vm,
|
/ndk/sources/android/crazy_linker/include/ |
crazy_linker.h | 114 // Record the value of |java_vm| inside of |context|. If this is not NULL, 117 // it, passing the value of |java_vm| to it. If the function returns with 121 // The |java_vm| field is also saved in the crazy_library_t object, and 124 void* java_vm, 128 // A value of NUMM in |*java_vm| means the feature is disabled. 130 void** java_vm,
|
/external/chromium_org/third_party/webrtc/video_engine/include/ |
vie_base.h | 165 static int SetAndroidObjects(JavaVM* java_vm, jobject context);
|
/art/runtime/ |
thread.cc | 346 void Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm) { 368 tlsPtr_.jni_env = new JNIEnvExt(this, java_vm); [all...] |