Home
last modified time | relevance | path

Searched defs:ScopedLocalRef (Results 1 – 1 of 1) sorted by relevance

/test/ext/junit-gtest/src/main/cpp/nativehelper/
Dscoped_local_ref.h29 ScopedLocalRef(JNIEnv* env, T localRef) : mEnv(env), mLocalRef(localRef) {} in ScopedLocalRef() function
53 ScopedLocalRef(ScopedLocalRef&& s) : mEnv(s.mEnv), mLocalRef(s.release()) {} in ScopedLocalRef() function
55 explicit ScopedLocalRef(JNIEnv* env) : mEnv(env), mLocalRef(nullptr) {} in ScopedLocalRef() function