Lines Matching refs:msg

909     std::string msg(child_jni_env_ext.get() == nullptr ?  in CreateNativeThread()  local
914 soa.Self()->ThrowOutOfMemoryError(msg.c_str()); in CreateNativeThread()
2054 const char* msg; in VisitBlockedOnObject() local
2057 msg = " - waiting to lock "; in VisitBlockedOnObject()
2061 msg = " - waiting for lock inflation of "; in VisitBlockedOnObject()
2068 PrintObject(obj, msg, owner_tid); in VisitBlockedOnObject()
2077 const char* msg, in PrintObject()
2080 os << msg << "an unknown object"; in PrintObject()
2086 os << msg << StringPrintf("<@addr=0x%" PRIxPTR "> (a %s)", in PrintObject()
2094 os << msg << StringPrintf("<0x%08x> (a %s)", obj->IdentityHashCode(), pretty_type.c_str()); in PrintObject()
2359 void Thread::AssertNoPendingExceptionForNewException(const char* msg) const { in AssertNoPendingExceptionForNewException()
2362 LOG(FATAL) << "Throwing new exception '" << msg << "' with unexpected pending exception: " in AssertNoPendingExceptionForNewException()
3170 std::string msg; in ThrowNewExceptionV() local
3171 StringAppendV(&msg, fmt, ap); in ThrowNewExceptionV()
3172 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV()
3176 const char* msg) { in ThrowNewException() argument
3178 AssertNoPendingExceptionForNewException(msg); in ThrowNewException()
3179 ThrowNewWrappedException(exception_class_descriptor, msg); in ThrowNewException()
3191 const char* msg) { in ThrowNewWrappedException() argument
3227 if (msg != nullptr) { in ThrowNewWrappedException()
3230 soa.AddLocalReference<jstring>(mirror::String::AllocFromModifiedUtf8(this, msg))); in ThrowNewWrappedException()
3257 if (msg != nullptr) { in ThrowNewWrappedException()
3272 if (msg != nullptr) { in ThrowNewWrappedException()
3288 void Thread::ThrowOutOfMemoryError(const char* msg) { in ThrowOutOfMemoryError() argument
3290 << '"' << msg << '"' in ThrowOutOfMemoryError()
3295 ThrowNewException("Ljava/lang/OutOfMemoryError;", msg); in ThrowOutOfMemoryError()