Home
last modified time | relevance | path

Searched refs:msg (Results 76 – 95 of 95) sorted by relevance

1234

/art/runtime/jni/
Djava_vm_ext.h81 void JniAbort(const char* jni_function_name, const char* msg);
Djni_internal.cc397 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause) in ThrowNewException() argument
400 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg)); in ThrowNewException()
401 if (msg != nullptr && s.get() == nullptr) { in ThrowNewException()
408 if (msg == nullptr && cause == nullptr) { in ThrowNewException()
410 } else if (msg != nullptr && cause == nullptr) { in ThrowNewException()
413 } else if (msg == nullptr && cause != nullptr) { in ThrowNewException()
598 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) { in ThrowNew() argument
600 return ThrowNewException(env, c, msg, nullptr); in ThrowNew()
648 static void FatalError(JNIEnv*, const char* msg) { in FatalError() argument
649 LOG(FATAL) << "JNI FatalError called: " << msg; in FatalError()
/art/oatdump/
Doatdump.cc2275 std::string msg; in DumpObject() local
2277 msg = "null"; in DumpObject()
2280 msg = reinterpret_cast<ArtMethod*>(elem)->PrettyMethod(); in DumpObject()
2282 msg = "<not in method section>"; in DumpObject()
2284 os << StringPrintf("%p %s\n", elem, msg.c_str()); in DumpObject()
2309 std::string msg; in DumpObject() local
2311 msg = "null"; in DumpObject()
2314 msg = reinterpret_cast<ArtField*>(elem)->PrettyField(); in DumpObject()
2316 msg = "<not in field section>"; in DumpObject()
2318 os << StringPrintf("%p %s\n", elem, msg.c_str()); in DumpObject()
[all …]
/art/build/apex/
Dart_apex_test.py262 def fail(self, msg, *fail_args): argument
264 logging.error(msg, *fail_args)
289 ok, msg = self.is_file(path)
291 self.fail(msg, path)
/art/test/046-reflect/src/
DMain.java241 String msg = nsfe.getMessage(); in run()
242 if (!msg.contains("Target;")) { in run()
243 System.out.println(" NoSuchFieldException '" + msg + in run()
/art/runtime/
Dindirect_reference_table.h390 static void AbortIfNoCheckJNI(const std::string& msg);
Druntime.cc610 void Runtime::Abort(const char* msg) { in Abort() argument
616 android_set_abort_message(msg); in Abort()
621 current->SetFaultMessage(msg); in Abort()
661 if (msg != nullptr && strchr(msg, '\n') != nullptr) { in Abort()
662 LOG(FATAL_WITHOUT_ABORT) << msg; in Abort()
1163 const char* msg) in CreatePreAllocatedException() argument
1176 ObjPtr<mirror::String> message = mirror::String::AllocFromModifiedUtf8(self, msg); in CreatePreAllocatedException()
Dthread.h465 void AssertNoPendingExceptionForNewException(const char* msg) const;
527 void ThrowNewException(const char* exception_class_descriptor, const char* msg)
532 void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg)
544 void ThrowOutOfMemoryError(const char* msg) REQUIRES_SHARED(Locks::mutator_lock_)
Dmethod_handles.cc697 std::string msg = in RefineTargetMethod() local
699 ThrowIllegalAccessException(msg.c_str()); in RefineTargetMethod()
Druntime.h251 NO_RETURN static void Abort(const char* msg) REQUIRES(!Locks::abort_lock_);
/art/test/439-npe/src/
DMain.java891 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; in assertEquals() local
892 throw new AssertionError(msg); in assertEquals()
/art/runtime/hprof/
Dhprof.cc800 std::string msg(android::base::StringPrintf("Couldn't dump heap; writing \"%s\" failed: %s", in DumpToFile() local
803 ThrowRuntimeException("%s", msg.c_str()); in DumpToFile()
804 LOG(ERROR) << msg; in DumpToFile()
/art/runtime/base/
Dmutex.cc163 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")", in ScopedContentionRecorder() local
165 ATraceBegin(msg.c_str()); in ScopedContentionRecorder()
/art/runtime/interpreter/
Dinterpreter_common.h657 std::string msg = value->IsClass() in CheckWriteValueConstraint() local
660 runtime->AbortTransactionAndThrowAbortError(self, msg); in CheckWriteValueConstraint()
Dunstarted_runtime.cc83 std::string msg; in AbortTransactionOrFail() local
84 StringAppendV(&msg, fmt, args); in AbortTransactionOrFail()
86 LOG(FATAL) << "Trying to abort, but not in transaction mode: " << msg; in AbortTransactionOrFail()
/art/profman/
Dprofman.cc207 NO_RETURN static void Abort(const char* msg) { in Abort() argument
208 LOG(ERROR) << msg; in Abort()
/art/runtime/dex/
Ddex_file_annotations.cc500 const char* msg = dex_file.StringByTypeIdx(type_index); in ProcessAnnotationValue() local
501 self->ThrowNewWrappedException("Ljava/lang/TypeNotPresentException;", msg); in ProcessAnnotationValue()
/art/compiler/optimizing/
Dinliner.cc73 #define LOG_INTERNAL(msg) \ argument
76 VLOG(compiler) << DepthString(__LINE__) << msg
/art/openjdkjvmti/
Dti_redefine.cc1797 std::string msg( in CollectAndCreateNewInstances() local
1799 RecordFailure(ERR(OUT_OF_MEMORY), msg); in CollectAndCreateNewInstances()
/art/runtime/gc/space/
Dimage_space.cc3696 for (const auto& msg : error_msgs) { in LoadBootImage() local
3700 oss << msg; in LoadBootImage()

1234