Lines Matching refs:function_name

1426   static void* ReleaseGuardedPACopy(const char* function_name, JNIEnv* env,  in ReleaseGuardedPACopy()  argument
1430 if (!GuardedCopy::Check(function_name, embedded_buf, true)) { in ReleaseGuardedPACopy()
1462 static bool Check(const char* function_name, const void* embedded_buf, bool mod_okay) { in Check() argument
1464 return copy->CheckHeader(function_name, mod_okay) && copy->CheckRedZones(function_name); in Check()
1508 bool CheckHeader(const char* function_name, bool mod_okay) const { in CheckHeader() argument
1518 AbortF(function_name, in CheckHeader()
1530 AbortF(function_name, "buffer modified (0x%08lx vs 0x%08lx) at address %p", in CheckHeader()
1538 bool CheckRedZones(const char* function_name) const { in CheckRedZones()
1543 AbortF(function_name, "guard pattern before buffer disturbed at %p +%zd", this, i); in CheckRedZones()
1558 AbortF(function_name, "guard pattern after buffer disturbed at %p +%zd", this, in CheckRedZones()
2585 static jobject NewRef(const char* function_name, JNIEnv* env, jobject obj, IndirectRefKind kind) { in NewRef() argument
2587 ScopedCheck sc(kFlag_Default, function_name); in NewRef()
2613 static void DeleteRef(const char* function_name, JNIEnv* env, jobject obj, IndirectRefKind kind) { in DeleteRef() argument
2615 ScopedCheck sc(kFlag_ExcepOkay, function_name); in DeleteRef()
2638 static jmethodID GetMethodIDInternal(const char* function_name, JNIEnv* env, jclass c, in GetMethodIDInternal() argument
2641 ScopedCheck sc(kFlag_Default, function_name); in GetMethodIDInternal()
2657 static jfieldID GetFieldIDInternal(const char* function_name, JNIEnv* env, jclass c, in GetFieldIDInternal() argument
2660 ScopedCheck sc(kFlag_Default, function_name); in GetFieldIDInternal()
2676 static JniValueType GetField(const char* function_name, JNIEnv* env, jobject obj, jfieldID fid, in GetField() argument
2679 ScopedCheck sc(kFlag_Default, function_name); in GetField()
2770 static void SetField(const char* function_name, JNIEnv* env, jobject obj, jfieldID fid, in SetField() argument
2773 ScopedCheck sc(kFlag_Default, function_name); in SetField()
2883 static JniValueType CallMethodA(const char* function_name, JNIEnv* env, jobject obj, jclass c, in CallMethodA() argument
2887 ScopedCheck sc(kFlag_Default, function_name); in CallMethodA()
3067 static JniValueType CallMethodV(const char* function_name, JNIEnv* env, jobject obj, jclass c, in CallMethodV() argument
3071 ScopedCheck sc(kFlag_Default, function_name); in CallMethodV()
3251 static const void* GetStringCharsInternal(const char* function_name, JNIEnv* env, jstring string, in GetStringCharsInternal() argument
3255 ScopedCheck sc(flags, function_name); in GetStringCharsInternal()
3291 static void ReleaseStringCharsInternal(const char* function_name, JNIEnv* env, jstring string, in ReleaseStringCharsInternal() argument
3298 ScopedCheck sc(flags, function_name); in ReleaseStringCharsInternal()
3300 bool force_copy_ok = !soa.ForceCopy() || GuardedCopy::Check(function_name, chars, false); in ReleaseStringCharsInternal()
3323 static jarray NewPrimitiveArray(const char* function_name, JNIEnv* env, jsize length, in NewPrimitiveArray() argument
3326 ScopedCheck sc(kFlag_Default, function_name); in NewPrimitiveArray()
3365 static void* GetPrimitiveArrayElements(const char* function_name, Primitive::Type type, in GetPrimitiveArrayElements() argument
3368 ScopedCheck sc(kFlag_Default, function_name); in GetPrimitiveArrayElements()
3416 static void ReleasePrimitiveArrayElements(const char* function_name, Primitive::Type type, in ReleasePrimitiveArrayElements() argument
3419 ScopedCheck sc(kFlag_ExcepOkay, function_name); in ReleasePrimitiveArrayElements()
3422 elems = GuardedCopy::ReleaseGuardedPACopy(function_name, env, array, elems, mode); in ReleasePrimitiveArrayElements()
3471 static void GetPrimitiveArrayRegion(const char* function_name, Primitive::Type type, JNIEnv* env, in GetPrimitiveArrayRegion() argument
3474 ScopedCheck sc(kFlag_Default, function_name); in GetPrimitiveArrayRegion()
3521 static void SetPrimitiveArrayRegion(const char* function_name, Primitive::Type type, JNIEnv* env, in SetPrimitiveArrayRegion() argument
3524 ScopedCheck sc(kFlag_Default, function_name); in SetPrimitiveArrayRegion()