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

  /art/runtime/
jni_internal-inl.h 27 inline T JNIEnvExt::AddLocalReference(mirror::Object* obj) {
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_;
scoped_thread_state_change.h 109 JNIEnvExt* Env() const {
186 : self_(ThreadForEnv(env)), env_(down_cast<JNIEnvExt*>(env)), vm_(env_->vm) {
191 : self_(self), env_(down_cast<JNIEnvExt*>(self->GetJniEnv())),
207 JNIEnvExt* const env_;
thread-inl.h 33 JNIEnvExt* full_env(down_cast<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...]
thread.h 73 struct JNIEnvExt;
402 JNIEnvExt* GetJniEnv() const {
    [all...]
check_jni.cc 91 reinterpret_cast<JNIEnvExt*>(env)->self->HandleScopeContains(localRef);
768 JNIEnvExt* threadEnv = self->GetJniEnv();
    [all...]
thread_list.cc 447 JNIEnvExt* env = self->GetJniEnv();
    [all...]
thread.cc 290 Thread* self = static_cast<JNIEnvExt*>(env)->self;
371 tlsPtr_.jni_env = new JNIEnvExt(this, java_vm);
    [all...]
runtime.cc 944 JNIEnvExt* env = self->GetJniEnv();
    [all...]
  /art/runtime/entrypoints/portable/
portable_jni_entrypoints.cc 27 JNIEnvExt* env = self->GetJniEnv();
42 JNIEnvExt* env = self->GetJniEnv();
portable_trampoline_entrypoints.cc 289 JNIEnvExt* env = self->GetJniEnv();
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 32 JNIEnvExt* env = self->GetJniEnv();
65 JNIEnvExt* env = self->GetJniEnv();
quick_trampoline_entrypoints.cc 625 JNIEnvExt* env = self->GetJniEnv();
706 JNIEnvExt* env = self->GetJniEnv();
    [all...]
  /art/compiler/trampolines/
trampoline_compiler.cc 40 __ LoadFromOffset(kLoadWord, IP, R0, JNIEnvExt::SelfOffset().Int32Value());
72 Offset(JNIEnvExt::SelfOffset().Int32Value()));
105 __ LoadFromOffset(kLoadWord, T9, A0, JNIEnvExt::SelfOffset().Int32Value());
  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 135 Thread* self = static_cast<JNIEnvExt*>(env)->self;
java_lang_Thread.cc 37 return static_cast<JNIEnvExt*>(env)->self->Interrupted() ? JNI_TRUE : JNI_FALSE;
  /art/runtime/entrypoints/
entrypoint_utils.cc 123 JNIEnvExt* env = self->GetJniEnv();
  /art/compiler/jni/quick/
jni_compiler.cc 96 const Offset functions(OFFSETOF_MEMBER(JNIEnvExt, functions));

Completed in 843 milliseconds