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

123

/art/test/088-monitor-verification/src/
H A DMyException.java21 public MyException(String msg) { argument
22 super(msg);
/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DHprofFormatException.java24 HprofFormatException(String msg) { argument
25 super(msg);
28 HprofFormatException(String msg, Exception cause) { argument
29 super(msg, cause);
/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/libartbase/base/
H A Dlogging_test.cc29 static void SimpleAborter(const char* msg) { argument
30 LOG(FATAL_WITHOUT_ABORT) << msg;
/art/test/616-cha-interface-default/src-multidex/
H A DBase.java38 default void printError(String msg) { argument
39 System.out.println(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/test/1946-list-descriptors/src-art/art/
H A DTest1946.java52 private static void check(boolean b, String msg) { argument
54 throw new Error("Test failed! " + msg);
58 private static <T> void checkEq(T[] full, T[] sub, String msg) { argument
61 msg = Arrays.toString(full) + " is not same as " + Arrays.toString(sub) + ": " + msg;
62 check(Arrays.asList(full).containsAll(Arrays.asList(sub)), msg);
65 private static <T> void checkSubset(T[] full, T[] sub, String msg) { argument
66 msg = Arrays.toString(full) + " does not contain all of " + Arrays.toString(sub) + ": " + msg;
67 check(Arrays.asList(full).containsAll(Arrays.asList(sub)), msg);
[all...]
/art/runtime/
H A Dcommon_throws.cc68 std::ostringstream msg; local
72 msg << vmsg;
74 msg << fmt;
76 AddReferrerLocation(msg, referrer);
78 self->ThrowNewException(exception_descriptor, msg.str().c_str());
86 std::ostringstream msg; local
90 msg << vmsg;
92 msg << fmt;
94 AddReferrerLocation(msg, referrer);
96 self->ThrowNewWrappedException(exception_descriptor, msg
163 ThrowClassCastException(const char* msg) argument
170 std::ostringstream msg; local
194 std::ostringstream msg; local
204 std::ostringstream msg; local
213 std::ostringstream msg; local
220 std::ostringstream msg; local
227 std::ostringstream msg; local
244 ThrowIllegalAccessException(const char* msg) argument
250 ThrowIllegalArgumentException(const char* msg) argument
256 ThrowIllegalStateException(const char* msg) argument
264 std::ostringstream msg; local
279 std::ostringstream msg; local
296 std::ostringstream msg; local
309 std::ostringstream msg; local
387 ThrowNegativeArraySizeException(const char* msg) argument
395 std::ostringstream msg; local
403 std::ostringstream msg; local
413 std::ostringstream msg; local
423 std::ostringstream msg; local
433 std::ostringstream msg; local
731 ThrowNullPointerException(const char* msg) argument
[all...]
H A Dindirect_reference_table-inl.h50 std::string msg = android::base::StringPrintf( local
56 AbortIfNoCheckJNI(msg);
77 std::string msg = android::base::StringPrintf( local
83 AbortIfNoCheckJNI(msg);
/art/test/999-redefine-hiddenapi/src/
H A DMain.java46 private static void assertMethodIsHidden(Class<?> klass, String msg) throws Exception { argument
50 throw new Exception("Method should not be accessible " + msg);
56 private static void assertFieldIsHidden(Class<?> klass, String msg) throws Exception { argument
60 throw new Exception("Field should not be accessible " + msg);
/art/benchmark/micro-native/
H A Dmicro_native.cc106 const char* msg; local
111 msg = "Native registration unable to find class; aborting...";
113 msg = tmp;
115 env->FatalError(msg);
120 const char* msg; local
123 msg = "RegisterNatives failed; aborting...";
125 msg = tmp;
127 env->FatalError(msg);
/art/runtime/jdwp/
H A Djdwp_adb.cc177 msghdr msg; local
178 msg.msg_name = nullptr;
179 msg.msg_namelen = 0;
180 msg.msg_iov = &iov;
181 msg.msg_iovlen = 1;
182 msg.msg_flags = 0;
183 msg.msg_control = cm_un.buffer;
184 msg.msg_controllen = sizeof(cm_un.buffer);
186 cmsghdr* cmsg = CMSG_FIRSTHDR(&msg);
187 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/test/596-app-images/src/
H A DMain.java113 public static void assertEqual(Object a, Object b, String msg) { argument
115 System.out.println(msg);
118 public static void assertNotEqual(Object a, Object b, String msg) { argument
120 System.out.println(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);
/art/test/1947-breakpoint-redefine-deopt/src/
H A DMain.java63 public static void check(boolean b, String msg) { argument
65 throw new Error("FAILED: " + msg);
/art/test/671-npe-field-opts/src/
H A DMain.java76 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\"";
77 throw new AssertionError(msg);
/art/test/983-source-transform-verify/
H A Dsource_transform.cc34 static void Println(JNIEnv* env, const char* msg) { argument
39 ScopedLocalRef<jstring> data(env, env->NewStringUTF(msg));

Completed in 6080 milliseconds

123