Lines Matching refs:msg
341 std::string msg(StringPrintf("pthread_create (%s stack) failed: %s", in CreateNativeThread() local
344 soa.Self()->ThrowOutOfMemoryError(msg.c_str()); in CreateNativeThread()
1147 void Thread::AssertNoPendingExceptionForNewException(const char* msg) const { in AssertNoPendingExceptionForNewException()
1151 LOG(FATAL) << "Throwing new exception '" << msg << "' with unexpected pending exception: " in AssertNoPendingExceptionForNewException()
1649 std::string msg; in ThrowNewExceptionV() local
1650 StringAppendV(&msg, fmt, ap); in ThrowNewExceptionV()
1651 ThrowNewException(throw_location, exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV()
1655 const char* msg) { in ThrowNewException() argument
1657 AssertNoPendingExceptionForNewException(msg); in ThrowNewException()
1658 ThrowNewWrappedException(throw_location, exception_class_descriptor, msg); in ThrowNewException()
1663 const char* msg) { in ThrowNewWrappedException() argument
1710 if (msg != nullptr) { in ThrowNewWrappedException()
1713 soa.AddLocalReference<jstring>(mirror::String::AllocFromModifiedUtf8(this, msg))); in ThrowNewWrappedException()
1740 if (msg != nullptr) { in ThrowNewWrappedException()
1761 if (msg != nullptr) { in ThrowNewWrappedException()
1779 void Thread::ThrowOutOfMemoryError(const char* msg) { in ThrowOutOfMemoryError() argument
1781 msg, (tls32_.throwing_OutOfMemoryError ? " (recursive case)" : "")); in ThrowOutOfMemoryError()
1785 ThrowNewException(throw_location, "Ljava/lang/OutOfMemoryError;", msg); in ThrowOutOfMemoryError()