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

  /libcore/include/
ScopedLocalRef.h 28 ScopedLocalRef(JNIEnv* env, T localRef) : mEnv(env), mLocalRef(localRef) {
45 T localRef = mLocalRef;
47 return localRef;
  /frameworks/base/media/jni/audioeffect/
android_media_Visualizer.cpp 144 jbyteArray localRef = env->NewByteArray(size);
145 if (NULL != localRef) {
147 *array = (jbyteArray)env->NewGlobalRef(localRef);
150 env->DeleteLocalRef(localRef);
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 253 jclass localRef = env->FindClass("android/content/ContentValues");
255 env->GetMethodID(localRef, "put", "(Ljava/lang/String;[B)V");
257 env->GetMethodID(localRef, "put", "(Ljava/lang/String;Ljava/lang/String;)V");
258 jmethodID ContentValues_constructor = env->GetMethodID(localRef, "<init>", "()V");
261 if (NULL != localRef && NULL != pConstraints) {
263 constraints = env->NewObject(localRef, ContentValues_constructor);
303 jclass localRef = env->FindClass("android/content/ContentValues");
305 env->GetMethodID(localRef, "put", "(Ljava/lang/String;Ljava/lang/String;)V");
307 if (NULL != localRef && NULL != pMetadata) {
310 constructorId = env->GetMethodID(localRef, "<init>", "()V")
    [all...]

Completed in 202 milliseconds