Home | History | Annotate | Download | only in include

Lines Matching defs:jni

14 #include <jni.h>
23 // The JNI interface pointer (JNIEnv) is valid only in the current thread.
25 // AttachCurrentThread() to attach itself to the VM and obtain a JNI interface
44 GlobalRef(JNIEnv* jni, jobject object);
60 JavaClass(JNIEnv* jni, jclass clazz) : jni_(jni), j_class_(clazz) {}
76 NativeRegistration(JNIEnv* jni, jclass clazz);
87 // needs the JNI interface pointer but its main purpose is to create a
92 explicit JNIEnvironment(JNIEnv* jni);
111 // Main class for working with Java from C++ using JNI in WebRTC.
116 // JNIEnv* jni = ::base::android::AttachCurrentThread();
118 // jni->GetJavaVM(&jvm);
176 JNIEnv* jni() const { return GetEnv(jvm_); }