Searched defs:msg (Results 1 - 17 of 17) sorted by relevance

/art/test/etc/
H A Dhost-run-test-jar6 msg() { function
70 msg "------------------------------"
91 msg "Waiting for jdb to connect:"
92 msg " jdb -attach localhost:$PORT"
H A Dpush-and-run-test-jar6 msg() { function
42 msg "Spawning from zygote"
82 msg "Performing optimizations"
85 msg "Skipping optimizations"
90 msg "Performing verification"
93 msg "Skipping verification"
97 msg "------------------------------"
117 msg "Waiting for jdb to connect:"
118 msg " adb forward tcp:$PORT tcp:$PORT"
119 msg " jd
[all...]
H A Dreference-run-test-classes12 msg() { function
48 msg "Performing verification"
51 msg "Skipping verification"
56 msg "Waiting for jdb to connect:"
57 msg " jdb -attach localhost:$PORT"
/art/test/088-monitor-verification/src/
H A DMyException.java21 public MyException(String msg) { argument
22 super(msg);
/art/test/036-finalizer/src/
H A DFinalizerTest.java25 public FinalizerTest(String msg) { argument
26 mMsg = msg;
/art/test/050-sync-test/src/
H A DThreadDeathHandler.java25 public ThreadDeathHandler(String msg) { argument
26 mMyMessage = msg;
/art/test/054-uncaught/src/
H A DThreadDeathHandler.java25 public ThreadDeathHandler(String msg) { argument
26 mMyMessage = msg;
/art/test/084-class-init/src/
H A DSlowInit.java27 public static void printMsg(String msg) { argument
28 System.out.println(msg);
/art/runtime/mirror/
H A Dthrowable.cc54 String* msg = GetDetailMessage(); local
55 if (msg != NULL) {
56 result += msg->ToModifiedUtf8();
/art/runtime/base/
H A Dmutex-inl.h51 std::string msg = StringPrintf("Lock contention on %s (owner tid: %llu)", local
53 ATRACE_BEGIN(msg.c_str());
/art/runtime/
H A Dreference_table.cc131 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
133 StringAppendF(&msg, " (%d unique instances)", equiv + 1);
135 os << " " << msg << "\n"; local
H A Dcommon_throws.cc51 std::ostringstream msg; local
55 msg << vmsg;
57 msg << fmt;
59 AddReferrerLocation(msg, referrer);
63 self->ThrowNewException(computed_throw_location, exception_descriptor, msg.str().c_str());
65 self->ThrowNewException(*throw_location, exception_descriptor, msg.str().c_str());
109 void ThrowClassCastException(const ThrowLocation* throw_location, const char* msg) { argument
110 ThrowException(throw_location, "Ljava/lang/ClassCastException;", NULL, msg);
116 std::ostringstream msg; local
117 msg << PrettyDescripto
132 std::ostringstream msg; local
142 std::ostringstream msg; local
150 std::ostringstream msg; local
157 std::ostringstream msg; local
165 std::ostringstream msg; local
182 ThrowIllegalArgumentException(const ThrowLocation* throw_location, const char* msg) argument
192 std::ostringstream msg; local
206 std::ostringstream msg; local
218 std::ostringstream msg; local
249 ThrowNegativeArraySizeException(const char* msg) argument
259 std::ostringstream msg; local
269 std::ostringstream msg; local
281 std::ostringstream msg; local
291 std::ostringstream msg; local
302 std::ostringstream msg; local
466 ThrowNullPointerException(const ThrowLocation* throw_location, const char* msg) argument
[all...]
H A Dcheck_jni.cc40 static void JniAbort(const char* jni_function_name, const char* msg) { argument
46 os << "JNI DETECTED ERROR IN APPLICATION: " << msg; local
70 std::string msg; local
71 StringAppendV(&msg, fmt, ap);
72 JniAbort(jni_function_name, msg.c_str());
415 std::string msg; local
421 StringAppendF(&msg, "%d", b);
423 StringAppendF(&msg, "%#x (%d)", b, b);
428 StringAppendF(&msg, "U+%x ('%c')", c, c);
430 StringAppendF(&msg, "
532 LOG(INFO) << "JNI: call to " << function_name_ << "(" << msg << ")"; local
536 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")"; local
539 LOG(INFO) << "JNI: -> " << function_name_ << "(" << msg << ")"; local
1204 FatalError(JNIEnv* env, const char* msg) argument
[all...]
H A Dthread.cc282 std::string msg(StringPrintf("pthread_create (%s stack) failed: %s",
285 soa.Self()->ThrowOutOfMemoryError(msg.c_str());
1480 std::string msg; local
1481 StringAppendV(&msg, fmt, ap);
1482 ThrowNewException(throw_location, exception_class_descriptor, msg.c_str());
1486 const char* msg) {
1488 ThrowNewWrappedException(throw_location, exception_class_descriptor, msg);
1493 const char* msg) {
1526 if (msg != NULL) {
1528 msg_string.reset(mirror::String::AllocFromModifiedUtf8(this, msg));
1485 ThrowNewException(const ThrowLocation& throw_location, const char* exception_class_descriptor, const char* msg) argument
1491 ThrowNewWrappedException(const ThrowLocation& throw_location, const char* exception_class_descriptor, const char* msg) argument
1583 ThrowOutOfMemoryError(const char* msg) argument
1935 mirror::String* msg = exception->GetDetailMessage(); local
[all...]
H A Djni_internal.cc360 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause)
363 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg));
364 if (msg != NULL && s.get() == NULL) {
371 if (msg == NULL && cause == NULL) {
373 } else if (msg != NULL && cause == NULL) {
376 } else if (msg == NULL && cause != NULL) {
755 static jint ThrowNew(JNIEnv* env, jclass c, const char* msg) { argument
757 return ThrowNewException(env, c, msg, NULL);
810 static void FatalError(JNIEnv*, const char* msg) { argument
811 LOG(FATAL) << "JNI FatalError called: " << msg;
[all...]
/art/runtime/jdwp/
H A Djdwp_adb.cc147 msghdr msg; local
148 msg.msg_name = NULL;
149 msg.msg_namelen = 0;
150 msg.msg_iov = &iov;
151 msg.msg_iovlen = 1;
152 msg.msg_flags = 0;
153 msg.msg_control = cm_un.buffer;
154 msg.msg_controllen = sizeof(cm_un.buffer);
156 cmsghdr* cmsg = CMSG_FIRSTHDR(&msg);
157 cmsg->cmsg_len = msg
[all...]
/art/compiler/dex/quick/
H A Dralloc_util.cc942 void Mir2Lir::DumpCounts(const RefCounts* arr, int size, const char* msg) { argument
943 LOG(INFO) << msg;

Completed in 547 milliseconds