/art/tools/dexfuzz/src/dexfuzz/ |
D | Log.java | 44 public static void debug(String msg) { in debug() argument 45 log(LogTag.DEBUG, msg); in debug() 48 public static void info(String msg) { in info() argument 49 log(LogTag.INFO, msg); in info() 52 public static void warn(String msg) { in warn() argument 53 log(LogTag.WARN, msg); in warn() 56 public static void error(String msg) { in error() argument 57 log(LogTag.ERROR, msg); in error() 60 public static void always(String msg) { in always() argument 61 System.out.println(msg); in always() [all …]
|
/art/runtime/ |
D | common_throws.cc | 60 std::ostringstream msg; in ThrowException() local 64 msg << vmsg; in ThrowException() 66 msg << fmt; in ThrowException() 68 AddReferrerLocation(msg, referrer); in ThrowException() 70 self->ThrowNewException(exception_descriptor, msg.str().c_str()); in ThrowException() 78 std::ostringstream msg; in ThrowWrappedException() local 82 msg << vmsg; in ThrowWrappedException() 84 msg << fmt; in ThrowWrappedException() 86 AddReferrerLocation(msg, referrer); in ThrowWrappedException() 88 self->ThrowNewWrappedException(exception_descriptor, msg.str().c_str()); in ThrowWrappedException() [all …]
|
D | indirect_reference_table-inl.h | 50 std::string msg = android::base::StringPrintf( in GetChecked() local 56 AbortIfNoCheckJNI(msg); in GetChecked() 77 std::string msg = android::base::StringPrintf( in CheckEntry() local 83 AbortIfNoCheckJNI(msg); in CheckEntry()
|
/art/test/048-reflect-v8/src/ |
D | AnnotationTestHelpers.java | 39 String msg = ""; in asString() local 42 msg += "<null>"; in asString() 44 msg += "<empty>"; in asString() 47 msg += asString(annos[i]); in asString() 50 msg += ", "; in asString() 55 return msg; in asString()
|
D | AnnotationTest.java | 134 String msg = "Annotations by type, defined by class " in printAnnotationsByType() local 139 System.out.println(msg); in printAnnotationsByType() 146 String msg = asString(anno); in printDeclaredAnnotation() local 149 + ", annotation " + annotationDefClass + ": " + msg); in printDeclaredAnnotation() 158 String msg = "Declared annnotations by type, defined by class " + annotationUseClass.getName() in printDeclaredAnnotationsByType() local 162 System.out.println(msg); in printDeclaredAnnotationsByType() 204 String msg = "Annotations by type, defined by method " + m.getName() + " with annotation " + in printMethodAnnotationsByType() local 208 System.out.println(msg); in printMethodAnnotationsByType() 244 String msg = "Annotations declared by method " + m.getName() + " with annotation " in printMethodDeclaredAnnotation() local 248 System.out.println(msg); in printMethodDeclaredAnnotation() [all …]
|
/art/benchmark/micro-native/ |
D | micro_native.cc | 106 const char* msg; in jniRegisterNativeMethods() local 111 msg = "Native registration unable to find class; aborting..."; in jniRegisterNativeMethods() 113 msg = tmp; in jniRegisterNativeMethods() 115 env->FatalError(msg); in jniRegisterNativeMethods() 120 const char* msg; in jniRegisterNativeMethods() local 123 msg = "RegisterNatives failed; aborting..."; in jniRegisterNativeMethods() 125 msg = tmp; in jniRegisterNativeMethods() 127 env->FatalError(msg); in jniRegisterNativeMethods()
|
/art/runtime/jdwp/ |
D | jdwp_adb.cc | 178 msghdr msg; in ReceiveClientFd() local 179 msg.msg_name = nullptr; in ReceiveClientFd() 180 msg.msg_namelen = 0; in ReceiveClientFd() 181 msg.msg_iov = &iov; in ReceiveClientFd() 182 msg.msg_iovlen = 1; in ReceiveClientFd() 183 msg.msg_flags = 0; in ReceiveClientFd() 184 msg.msg_control = cm_un.buffer; in ReceiveClientFd() 185 msg.msg_controllen = sizeof(cm_un.buffer); in ReceiveClientFd() 187 cmsghdr* cmsg = CMSG_FIRSTHDR(&msg); in ReceiveClientFd() 188 cmsg->cmsg_len = msg.msg_controllen; in ReceiveClientFd() [all …]
|
/art/test/088-monitor-verification/src/ |
D | MyException.java | 21 public MyException(String msg) { in MyException() argument 22 super(msg); in MyException()
|
/art/test/412-new-array/src/ |
D | TestCase.java | 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; in assertEquals() local 73 throw new AssertionError(msg); in assertEquals() 85 String msg = "Objects are the same: " + String.valueOf(expected); in assertNotEquals() local 86 throw new AssertionError(msg); in assertNotEquals() 196 public static void fail(String msg) { in fail() argument 197 throw new AssertionError(msg); in fail()
|
/art/test/414-static-fields/src/ |
D | TestCase.java | 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; in assertEquals() local 73 throw new AssertionError(msg); in assertEquals() 85 String msg = "Objects are the same: " + String.valueOf(expected); in assertNotEquals() local 86 throw new AssertionError(msg); in assertNotEquals() 196 public static void fail(String msg) { in fail() argument 197 throw new AssertionError(msg); in fail()
|
/art/test/407-arrays/src/ |
D | TestCase.java | 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; in assertEquals() local 73 throw new AssertionError(msg); in assertEquals() 85 String msg = "Objects are the same: " + String.valueOf(expected); in assertNotEquals() local 86 throw new AssertionError(msg); in assertNotEquals() 196 public static void fail(String msg) { in fail() argument 197 throw new AssertionError(msg); in fail()
|
/art/test/406-fields/src/ |
D | TestCase.java | 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; in assertEquals() local 73 throw new AssertionError(msg); in assertEquals() 85 String msg = "Objects are the same: " + String.valueOf(expected); in assertNotEquals() local 86 throw new AssertionError(msg); in assertNotEquals() 196 public static void fail(String msg) { in fail() argument 197 throw new AssertionError(msg); in fail()
|
/art/test/054-uncaught/src/ |
D | ThreadDeathHandler.java | 25 public ThreadDeathHandler(String msg) { in ThreadDeathHandler() argument 26 mMyMessage = msg; in ThreadDeathHandler()
|
/art/test/050-sync-test/src/ |
D | ThreadDeathHandler.java | 25 public ThreadDeathHandler(String msg) { in ThreadDeathHandler() argument 26 mMyMessage = msg; in ThreadDeathHandler()
|
/art/tools/dexfuzz/src/dexfuzz/listeners/ |
D | ConsoleLoggerListener.java | 40 private void logToConsole(String msg) { in logToConsole() argument 41 System.out.println("CONSOLE: " + msg); in logToConsole() 160 public void handleMessage(String msg) { in handleMessage() argument 161 logToConsole(msg); in handleMessage()
|
/art/test/084-class-init/src/ |
D | SlowInit.java | 27 public static void printMsg(String msg) { in printMsg() argument 28 System.out.println(msg); in printMsg()
|
/art/runtime/base/ |
D | logging_test.cc | 28 static void SimpleAborter(const char* msg) { in SimpleAborter() argument 29 LOG(FATAL_WITHOUT_ABORT) << msg; in SimpleAborter()
|
/art/test/616-cha-interface-default/src-multidex/ |
D | Base.java | 38 default void printError(String msg) { in printError() argument 39 System.out.println(msg); in printError()
|
/art/test/596-app-images/src/ |
D | Main.java | 113 public static void assertEqual(Object a, Object b, String msg) { in assertEqual() argument 115 System.out.println(msg); in assertEqual() 118 public static void assertNotEqual(Object a, Object b, String msg) { in assertNotEqual() argument 120 System.out.println(msg); in assertNotEqual()
|
/art/test/etc/ |
D | run-test-jar | 5 msg() { function 219 msg "Spawning from zygote" 354 msg "Performing optimizations" 357 msg "Skipping optimizations" 362 msg "Performing verification" 366 msg "Forcing verification to be soft fail" 370 msg "Skipping verification" 374 msg "------------------------------" 382 msg "Waiting for jdb to connect:" 384 msg " adb forward tcp:$PORT tcp:$PORT" [all …]
|
/art/tools/checker/common/ |
D | logger.py | 58 def fail(msg, file=None, line=-1, lineText=None, variables=None): argument 60 Logger.log(msg, Logger.Level.Error, out=sys.stderr) 97 def testFailed(msg, assertion, variables): argument 99 Logger.fail(msg, assertion.fileName, assertion.lineNo, assertion.originalText, variables)
|
/art/test/993-breakpoints/src/art/ |
D | Test993.java | 138 String msg; field in Test993.InvokeDirect 140 public InvokeDirect(String msg, Runnable r) { in InvokeDirect() argument 141 this.msg = msg; in InvokeDirect() 146 System.out.println("\t\tInvoking \"" + msg + "\""); in run() 184 String msg; field in Test993.ConstructDirect 186 public ConstructDirect(String msg, Supplier<Object> s) { in ConstructDirect() argument 187 this.msg = msg; in ConstructDirect() 193 System.out.println("\t\tConstructing: " + msg); in run()
|
/art/tools/checker/match/ |
D | file.py | 185 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/test/ti-agent/ |
D | jni_helper.h | 57 inline bool JniThrowNullPointerException(JNIEnv* env, const char* msg) { in JniThrowNullPointerException() argument 67 return env->ThrowNew(exc_class.get(), msg) == JNI_OK; in JniThrowNullPointerException()
|
/art/test/004-UnsafeTest/src/ |
D | Main.java | 21 private static void check(int actual, int expected, String msg) { in check() argument 23 System.out.println(msg + " : " + actual + " != " + expected); in check() 28 private static void check(long actual, long expected, String msg) { in check() argument 30 System.out.println(msg + " : " + actual + " != " + expected); in check() 35 private static void check(Object actual, Object expected, String msg) { in check() argument 37 System.out.println(msg + " : " + actual + " != " + expected); in check()
|