Searched refs:GetPrimitiveArray (Results 1 – 1 of 1) sorted by relevance
/art/runtime/jni/ |
D | jni_internal.cc | 2142 return GetPrimitiveArray<jbooleanArray, jboolean, mirror::BooleanArray>(env, array, is_copy); in GetBooleanArrayElements() 2146 return GetPrimitiveArray<jbyteArray, jbyte, mirror::ByteArray>(env, array, is_copy); in GetByteArrayElements() 2150 return GetPrimitiveArray<jcharArray, jchar, mirror::CharArray>(env, array, is_copy); in GetCharArrayElements() 2154 return GetPrimitiveArray<jdoubleArray, jdouble, mirror::DoubleArray>(env, array, is_copy); in GetDoubleArrayElements() 2158 return GetPrimitiveArray<jfloatArray, jfloat, mirror::FloatArray>(env, array, is_copy); in GetFloatArrayElements() 2162 return GetPrimitiveArray<jintArray, jint, mirror::IntArray>(env, array, is_copy); in GetIntArrayElements() 2166 return GetPrimitiveArray<jlongArray, jlong, mirror::LongArray>(env, array, is_copy); in GetLongArrayElements() 2170 return GetPrimitiveArray<jshortArray, jshort, mirror::ShortArray>(env, array, is_copy); in GetShortArrayElements() 2605 static ElementT* GetPrimitiveArray(JNIEnv* env, ArrayT java_array, jboolean* is_copy) { in GetPrimitiveArray() function in art::JNI
|