HomeSort by relevance Sort by last modified time
    Searched defs:JNIEnvExt (Results 1 - 2 of 2) sorted by null

  /art/runtime/
jni_internal.h 138 struct JNIEnvExt : public JNIEnv {
139 JNIEnvExt(Thread* self, JavaVMExt* vm);
140 ~JNIEnvExt();
157 return Offset(OFFSETOF_MEMBER(JNIEnvExt, local_ref_cookie));
161 return Offset(OFFSETOF_MEMBER(JNIEnvExt, self));
197 // Used to save and restore the JNIEnvExt state when not going through code created by the JNI
201 explicit ScopedJniEnvLocalRefState(JNIEnvExt* env) : env_(env) {
212 JNIEnvExt* env_;
jni_internal.cc 707 return static_cast<JNIEnvExt*>(env)->self->IsExceptionPending() ? JNI_TRUE : JNI_FALSE;
778 static_cast<JNIEnvExt*>(env)->PushFrame(capacity);
813 JavaVMExt* vm = reinterpret_cast<JNIEnvExt*>(env)->vm;
815 Thread* self = reinterpret_cast<JNIEnvExt*>(env)->self;
851 IndirectReferenceTable& locals = reinterpret_cast<JNIEnvExt*>(env)->locals;
853 uint32_t cookie = reinterpret_cast<JNIEnvExt*>(env)->local_ref_cookie;
    [all...]

Completed in 50 milliseconds