Searched refs:msg (Results 1 - 25 of 30) sorted by relevance

12

/art/test/088-monitor-verification/src/
H A DMyException.java21 public MyException(String msg) { argument
22 super(msg);
/art/test/etc/
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"
H A Dpush-and-run-test-jar6 msg() { function
63 msg "Spawning from zygote"
120 msg "Performing optimizations"
123 msg "Skipping optimizations"
127 msg "Performing verification"
130 msg "Skipping verification"
134 msg "------------------------------"
154 msg "Waiting for jdb to connect:"
155 msg " adb forward tcp:$PORT tcp:$PORT"
156 msg " jd
[all...]
H A Dpush-and-run-prebuilt-test-jar6 msg() { function
75 msg "Spawning from zygote"
127 msg "Performing optimizations"
130 msg "Skipping optimizations"
134 msg "Performing verification"
137 msg "Skipping verification"
141 msg "------------------------------"
167 msg "Waiting for jdb to connect:"
168 msg " adb forward tcp:$PORT tcp:$PORT"
169 msg " jd
[all...]
H A Dhost-run-test-jar6 msg() { function
131 msg "------------------------------"
150 msg "Waiting for jdb to connect:"
151 msg " jdb -attach localhost:$PORT"
/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/
H A Dcommon_throws.cc49 std::ostringstream msg; local
53 msg << vmsg;
55 msg << fmt;
57 AddReferrerLocation(msg, referrer);
61 self->ThrowNewException(computed_throw_location, exception_descriptor, msg.str().c_str());
63 self->ThrowNewException(*throw_location, exception_descriptor, msg.str().c_str());
71 std::ostringstream msg; local
75 msg << vmsg;
77 msg << fmt;
79 AddReferrerLocation(msg, referre
128 ThrowClassCastException(const ThrowLocation* throw_location, const char* msg) argument
135 std::ostringstream msg; local
151 std::ostringstream msg; local
160 std::ostringstream msg; local
168 std::ostringstream msg; local
175 std::ostringstream msg; local
183 std::ostringstream msg; local
200 ThrowIllegalAccessException(const ThrowLocation* throw_location, const char* msg) argument
206 ThrowIllegalArgumentException(const ThrowLocation* throw_location, const char* msg) argument
216 std::ostringstream msg; local
230 std::ostringstream msg; local
242 std::ostringstream msg; local
289 ThrowNegativeArraySizeException(const char* msg) argument
298 std::ostringstream msg; local
309 std::ostringstream msg; local
321 std::ostringstream msg; local
331 std::ostringstream msg; local
342 std::ostringstream msg; local
506 ThrowNullPointerException(const ThrowLocation* throw_location, const char* msg) argument
[all...]
H A Dcommon_throws.h63 void ThrowClassCastException(const ThrowLocation* throw_location, const char* msg)
97 void ThrowIllegalAccessException(const ThrowLocation* throw_location, const char* msg)
102 void ThrowIllegalArgumentException(const ThrowLocation* throw_location, const char* msg)
143 void ThrowNegativeArraySizeException(const char* msg)
182 void ThrowNullPointerException(const ThrowLocation* throw_location, const char* msg)
H A Dcheck_jni.cc41 static void JniAbort(const char* jni_function_name, const char* msg) { argument
47 os << "JNI DETECTED ERROR IN APPLICATION: " << msg; local
71 std::string msg; local
72 StringAppendV(&msg, fmt, ap);
73 JniAbort(jni_function_name, msg.c_str());
416 std::string msg; local
422 StringAppendF(&msg, "%d", b);
424 StringAppendF(&msg, "%#x (%d)", b, b);
429 StringAppendF(&msg, "U+%x ('%c')", c, c);
431 StringAppendF(&msg, "
534 LOG(INFO) << "JNI: call to " << function_name_ << "(" << msg << ")"; local
538 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")"; local
541 LOG(INFO) << "JNI: -> " << function_name_ << "(" << msg << ")"; local
1197 FatalError(JNIEnv* env, const char* msg) argument
[all...]
H A Dreference_table.cc135 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
137 StringAppendF(&msg, " (%d unique instances)", equiv + 1);
139 os << " " << msg << "\n"; local
H A Dthread.cc341 std::string msg(StringPrintf("pthread_create (%s stack) failed: %s",
344 soa.Self()->ThrowOutOfMemoryError(msg.c_str());
1147 void Thread::AssertNoPendingExceptionForNewException(const char* msg) const {
1151 LOG(FATAL) << "Throwing new exception '" << msg << "' with unexpected pending exception: "
1649 std::string msg; local
1650 StringAppendV(&msg, fmt, ap);
1651 ThrowNewException(throw_location, exception_class_descriptor, msg.c_str());
1655 const char* msg) {
1657 AssertNoPendingExceptionForNewException(msg);
1658 ThrowNewWrappedException(throw_location, exception_class_descriptor, msg);
1654 ThrowNewException(const ThrowLocation& throw_location, const char* exception_class_descriptor, const char* msg) argument
1661 ThrowNewWrappedException(const ThrowLocation& throw_location, const char* exception_class_descriptor, const char* msg) argument
1779 ThrowOutOfMemoryError(const char* msg) argument
[all...]
H A Dquick_exception_handler.cc121 mirror::String* msg = exception->GetDetailMessage(); local
122 std::string str_msg(msg != nullptr ? msg->ToModifiedUtf8() : "");
H A Djni_internal.h57 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
/art/runtime/base/
H A Dlogging.cc140 std::string msg(data_->buffer.str());
145 if (msg.find('\n') == std::string::npos) {
146 LogLine(*data_, msg.c_str());
148 msg += '\n';
150 while (i < msg.size()) {
151 size_t nl = msg.find('\n', i);
152 msg[nl] = '\0';
153 LogLine(*data_, &msg[i]);
H A Dmacros.h63 #define COMPILE_ASSERT(expr, msg) \
64 typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] // NOLINT
H A Dmutex-inl.h55 std::string msg = StringPrintf("Lock contention on %s (owner tid: %" PRIu64 ")", local
57 ATRACE_BEGIN(msg.c_str());
/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/test/406-fields/src/
H A DTestCase.java72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\"";
73 throw new AssertionError(msg);
85 String msg = "Objects are the same: " + String.valueOf(expected);
86 throw new AssertionError(msg);
196 public static void fail(String msg) { argument
197 throw new AssertionError(msg);
/art/test/407-arrays/src/
H A DTestCase.java72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\"";
73 throw new AssertionError(msg);
85 String msg = "Objects are the same: " + String.valueOf(expected);
86 throw new AssertionError(msg);
196 public static void fail(String msg) { argument
197 throw new AssertionError(msg);
/art/test/004-UnsafeTest/src/
H A DMain.java25 private static void check(int actual, int expected, String msg) { argument
27 System.out.println(msg + " : " + actual + " != " + expected);
32 private static void check(long actual, long expected, String msg) { argument
34 System.out.println(msg + " : " + actual + " != " + expected);
/art/runtime/mirror/
H A Dthrowable.cc75 String* msg = GetDetailMessage(); local
76 if (msg != NULL) {
77 result += msg->ToModifiedUtf8();
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc124 std::string msg("stack size ");
125 msg += PrettySize(self->GetStackSize());
150 ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg.c_str()));
/art/test/122-npe/src/
H A DMain.java576 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\"";
577 throw new AssertionError(msg);

Completed in 868 milliseconds

12