Searched refs:JniAbortF (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | check_jni.cc | 76 void JniAbortF(const char* jni_function_name, const char* fmt, ...) { in JniAbortF() function 183 JniAbortF(function_name_, in CheckClassName() 213 JniAbortF(function_name_, "field operation on invalid %s: %p", in CheckFieldType() 218 JniAbortF(function_name_, "attempt to set field %s with value of wrong type: %s", in CheckFieldType() 225 JniAbortF(function_name_, "attempt to set field %s with value of wrong type: %c", in CheckFieldType() 232 JniAbortF(function_name_, "accessing non-static field %s as static", in CheckFieldType() 235 JniAbortF(function_name_, "accessing static field %s as non-static", in CheckFieldType() 252 JniAbortF(function_name_, "field operation on invalid %s: %p", in CheckInstanceFieldID() 263 JniAbortF(function_name_, "jfieldID %s not valid for an object of class %s", in CheckInstanceFieldID() 273 JniAbortF(function_name_, "non-nullable argument was NULL"); in CheckNonNull() [all …]
|
D | jni_internal.h | 52 void JniAbortF(const char* jni_function_name, const char* fmt, ...)
|
D | jni_internal.cc | 568 JniAbortF(name, #value " == null"); \ 574 JniAbortF(__FUNCTION__, #value " == null"); \ 1916 JniAbortF("NewString", "char_count < 0: %d", char_count); in NewString() 1920 JniAbortF("NewString", "chars == null && char_count > 0"); in NewString() 2068 JniAbortF("GetArrayLength", "not an array: %s", PrettyTypeOf(obj).c_str()); in GetArrayLength() 2123 JniAbortF("NewObjectArray", "negative array length: %d", length); in NewObjectArray() 2134 JniAbortF("NewObjectArray", "not an object type: %s", in NewObjectArray() 2153 JniAbortF("NewObjectArray", "cannot assign object of type '%s' to array with element " in NewObjectArray() 2176 JniAbortF("GetPrimitiveArrayCritical", "expected primitive array, given %s", in GetPrimitiveArrayCritical() 2198 JniAbortF("ReleasePrimitiveArrayCritical", "expected primitive array, given %s", in ReleasePrimitiveArrayCritical() [all …]
|
D | reflection.cc | 397 JniAbortF(nullptr, "bad arguments passed to %s (see above for details)", in CheckMethodArguments()
|
D | thread.cc | 1370 JniAbortF(nullptr, "use of deleted %s %p", ToStr<IndirectRefKind>(kind).c_str(), obj); in DecodeJObject()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 221 JniAbortF(NULL, "invalid reference returned from %s", PrettyMethod(m).c_str()); in CheckReferenceResult() 229 JniAbortF(NULL, "attempt to return an instance of %s from %s", PrettyTypeOf(o).c_str(), in CheckReferenceResult()
|