Searched defs:ScopedGlobalRef (Results 1 – 4 of 4) sorted by relevance
50 class ScopedGlobalRef { class52 ScopedGlobalRef(JNIEnv* env, T obj) : obj_(env->NewGlobalRef(obj)) {} in ScopedGlobalRef() function in art::Test904ObjectAllocation::ScopedGlobalRef53 ScopedGlobalRef(const ScopedGlobalRef<T>& src) noexcept in ScopedGlobalRef() function in art::Test904ObjectAllocation::ScopedGlobalRef55 ScopedGlobalRef(ScopedGlobalRef<T>&& src) noexcept : obj_(src.obj_) { in ScopedGlobalRef() function in art::Test904ObjectAllocation::ScopedGlobalRef
203 using ScopedGlobalRef = ScopedRef<T, JavaVM, GlobalRefDeleter>; variable
201 using ScopedGlobalRef = ScopedRef<T, JavaVM, GlobalRefDeleter>; variable
3053 class ScopedGlobalRef { class3055 explicit ScopedGlobalRef(jobject obj) : obj_(obj) {} in ScopedGlobalRef() function in art::ScopedGlobalRef