Lines Matching full:is_copy
1998 static const jchar* GetStringChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
2004 if (is_copy != NULL) {
2005 *is_copy = JNI_FALSE;
2016 static const jchar* GetStringCritical(JNIEnv* env, jstring java_string, jboolean* is_copy) {
2017 return GetStringChars(env, java_string, is_copy);
2024 static const char* GetStringUTFChars(JNIEnv* env, jstring java_string, jboolean* is_copy) {
2028 if (is_copy != NULL) {
2029 *is_copy = JNI_TRUE;
2144 static void* GetPrimitiveArrayCritical(JNIEnv* env, jarray java_array, jboolean* is_copy) {
2149 if (is_copy != NULL) {
2150 *is_copy = JNI_FALSE;
2160 static jboolean* GetBooleanArrayElements(JNIEnv* env, jbooleanArray array, jboolean* is_copy) {
2163 return GetPrimitiveArray<jbooleanArray, jboolean*, BooleanArray>(soa, array, is_copy);
2166 static jbyte* GetByteArrayElements(JNIEnv* env, jbyteArray array, jboolean* is_copy) {
2169 return GetPrimitiveArray<jbyteArray, jbyte*, ByteArray>(soa, array, is_copy);
2172 static jchar* GetCharArrayElements(JNIEnv* env, jcharArray array, jboolean* is_copy) {
2175 return GetPrimitiveArray<jcharArray, jchar*, CharArray>(soa, array, is_copy);
2178 static jdouble* GetDoubleArrayElements(JNIEnv* env, jdoubleArray array, jboolean* is_copy) {
2181 return GetPrimitiveArray<jdoubleArray, jdouble*, DoubleArray>(soa, array, is_copy);
2184 is_copy) {
2187 return GetPrimitiveArray<jfloatArray, jfloat*, FloatArray>(soa, array, is_copy);
2190 static jint* GetIntArrayElements(JNIEnv* env, jintArray array, jboolean* is_copy) {
2193 return GetPrimitiveArray<jintArray, jint*, IntArray>(soa, array, is_copy);
2196 static jlong* GetLongArrayElements(JNIEnv* env, jlongArray array, jboolean* is_copy) {
2199 return GetPrimitiveArray<jlongArray, jlong*, LongArray>(soa, array, is_copy);
2202 static jshort* GetShortArrayElements(JNIEnv* env, jshortArray array, jboolean* is_copy) {
2205 return GetPrimitiveArray<jshortArray, jshort*, ShortArray>(soa, array, is_copy);
2549 jboolean* is_copy)
2553 if (is_copy != NULL) {
2554 *is_copy = JNI_FALSE;