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

12

/art/test/088-monitor-verification/src/
H A DMyException.java21 public MyException(String msg) { argument
22 super(msg);
/art/tools/dexfuzz/src/dexfuzz/
H A DLog.java44 public static void debug(String msg) { argument
45 log(LogTag.DEBUG, msg);
48 public static void info(String msg) { argument
49 log(LogTag.INFO, msg);
52 public static void warn(String msg) { argument
53 log(LogTag.WARN, msg);
56 public static void error(String msg) { argument
57 log(LogTag.ERROR, msg);
60 public static void always(String msg) { argument
61 System.out.println(msg);
64 log(LogTag tag, String msg) argument
73 errorAndQuit(String msg) argument
[all...]
/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.cc52 std::ostringstream msg; local
56 msg << vmsg;
58 msg << fmt;
60 AddReferrerLocation(msg, referrer);
62 self->ThrowNewException(exception_descriptor, msg.str().c_str());
68 std::ostringstream msg; local
72 msg << vmsg;
74 msg << fmt;
76 AddReferrerLocation(msg, referrer);
78 self->ThrowNewWrappedException(exception_descriptor, msg
128 ThrowClassCastException(const char* msg) argument
135 std::ostringstream msg; local
158 std::ostringstream msg; local
167 std::ostringstream msg; local
175 std::ostringstream msg; local
182 std::ostringstream msg; local
189 std::ostringstream msg; local
206 ThrowIllegalAccessException(const char* msg) argument
212 ThrowIllegalArgumentException(const char* msg) argument
221 std::ostringstream msg; local
236 std::ostringstream msg; local
251 std::ostringstream msg; local
263 std::ostringstream msg; local
326 ThrowNegativeArraySizeException(const char* msg) argument
334 std::ostringstream msg; local
342 std::ostringstream msg; local
352 std::ostringstream msg; local
363 std::ostringstream msg; local
372 std::ostringstream msg; local
382 std::ostringstream msg; local
545 ThrowNullPointerException(const char* msg) argument
[all...]
H A Dindirect_reference_table-inl.h47 std::string msg = StringPrintf( local
53 AbortIfNoCheckJNI(msg);
72 std::string msg = StringPrintf( local
78 AbortIfNoCheckJNI(msg);
H A Djni_internal.h47 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
H A Dcommon_throws.h69 void ThrowClassCastException(const char* msg)
103 void ThrowIllegalAccessException(const char* msg)
108 void ThrowIllegalArgumentException(const char* msg)
162 void ThrowNegativeArraySizeException(const char* msg)
201 void ThrowNullPointerException(const char* msg)
/art/test/048-reflect-v8/src/
H A DAnnotationTestHelpers.java39 String msg = "";
42 msg += "<null>";
44 msg += "<empty>";
47 msg += asString(annos[i]);
50 msg += ", ";
55 return msg;
H A DAnnotationTest.java134 String msg = "Annotations by type, defined by class "
139 System.out.println(msg);
146 String msg = asString(anno);
149 + ", annotation " + annotationDefClass + ": " + msg);
158 String msg = "Declared annnotations by type, defined by class " + annotationUseClass.getName()
162 System.out.println(msg);
204 String msg = "Annotations by type, defined by method " + m.getName() + " with annotation " +
208 System.out.println(msg);
244 String msg = "Annotations declared by method " + m.getName() + " with annotation "
248 System.out.println(msg);
[all...]
/art/runtime/base/
H A Dlogging.cc196 std::string msg; local
207 msg = data_->ToString();
212 if (msg.find('\n') == std::string::npos) {
213 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetSeverity(), msg.c_str());
215 msg += '\n';
217 while (i < msg.size()) {
218 size_t nl = msg.find('\n', i);
219 msg[nl] = '\0';
220 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetSeverity(), &msg[i]);
222 msg[n
[all...]
/art/runtime/jdwp/
H A Djdwp_adb.cc147 msghdr msg; local
148 msg.msg_name = nullptr;
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/412-new-array/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/414-static-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/tools/dexfuzz/src/dexfuzz/listeners/
H A DConsoleLoggerListener.java40 private void logToConsole(String msg) { argument
41 System.out.println("CONSOLE: " + msg);
160 public void handleMessage(String msg) { argument
161 logToConsole(msg);
H A DBaseListener.java72 public void handleMessage(String msg) { } argument
H A DLogFileListener.java75 private void write(String msg) { argument
80 writer.write(msg + "\n");
266 public void handleMessage(String msg) { argument
267 write(msg);
/art/test/etc/
H A Drun-test-jar5 msg() { function
159 msg "Spawning from zygote"
252 msg "Performing optimizations"
255 msg "Skipping optimizations"
260 msg "Performing verification"
264 msg "Forcing verification to be soft fail"
268 msg "Skipping verification"
272 msg "------------------------------"
280 msg "Waiting for jdb to connect:"
282 msg " ad
[all...]
/art/tools/checker/common/
H A Dlogger.py58 def fail(msg, file=None, line=-1, lineText=None, variables=None):
60 Logger.log(msg, Logger.Level.Error, out=sys.stderr)
97 def testFailed(msg, assertion, variables):
99 Logger.fail(msg, assertion.fileName, assertion.lineNo, assertion.originalText, variables)
/art/test/004-UnsafeTest/src/
H A DMain.java21 private static void check(int actual, int expected, String msg) { argument
23 System.out.println(msg + " : " + actual + " != " + expected);
28 private static void check(long actual, long expected, String msg) { argument
30 System.out.println(msg + " : " + actual + " != " + expected);
35 private static void check(Object actual, Object expected, String msg) { argument
37 System.out.println(msg + " : " + actual + " != " + expected);
/art/tools/checker/match/
H A Dfile.py185 msg = "NOT assertion matched line {}"
187 msg = "Assertion could not be matched starting from line {}"
188 msg = msg.format(lineNo)
189 Logger.testFailed(msg, e.assertion, e.variables)
/art/runtime/mirror/
H A Dthrowable.cc87 String* msg = GetDetailMessage(); local
88 if (msg != nullptr) {
89 result += msg->ToModifiedUtf8();

Completed in 606 milliseconds

12