Lines Matching refs:env_
58 ScopedEventDispatchEnvironment() : env_(nullptr), throw_(nullptr, nullptr) { in ScopedEventDispatchEnvironment()
63 : env_(env), in ScopedEventDispatchEnvironment()
64 throw_(env_, env_->ExceptionOccurred()) { in ScopedEventDispatchEnvironment()
68 env_->PushLocalFrame(128); in ScopedEventDispatchEnvironment()
69 env_->ExceptionClear(); in ScopedEventDispatchEnvironment()
73 if (env_ != nullptr) { in ~ScopedEventDispatchEnvironment()
74 if (throw_.get() != nullptr && !env_->ExceptionCheck()) { in ~ScopedEventDispatchEnvironment()
77 env_->Throw(throw_.get()); in ~ScopedEventDispatchEnvironment()
79 env_->PopLocalFrame(nullptr); in ~ScopedEventDispatchEnvironment()
85 JNIEnv* env_;
147 : env_(env), \
148 fn_(env_->event_callbacks == nullptr ? nullptr : env_->event_callbacks->name) { } \
174 fn_(env_, args...); \
178 ArtJvmTiEnv* env_; \
256 last_env = event.env_; in DispatchClassFileLoadHookEvent()