/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 | 50 std::ostringstream msg; in ThrowException() local 54 msg << vmsg; in ThrowException() 56 msg << fmt; in ThrowException() 58 AddReferrerLocation(msg, referrer); in ThrowException() 60 self->ThrowNewException(exception_descriptor, msg.str().c_str()); in ThrowException() 66 std::ostringstream msg; in ThrowWrappedException() local 70 msg << vmsg; in ThrowWrappedException() 72 msg << fmt; in ThrowWrappedException() 74 AddReferrerLocation(msg, referrer); in ThrowWrappedException() 76 self->ThrowNewWrappedException(exception_descriptor, msg.str().c_str()); in ThrowWrappedException() [all …]
|
D | common_throws.h | 62 void ThrowClassCastException(const char* msg) 96 void ThrowIllegalAccessException(const char* msg) 101 void ThrowIllegalArgumentException(const char* msg) 146 void ThrowNegativeArraySizeException(const char* msg) 185 void ThrowNullPointerException(const char* msg)
|
D | check_jni.cc | 359 std::string msg; in Check() local 361 TracePossibleHeapValue(soa, entry, fmt[i], args[i], &msg); in Check() 363 StringAppendF(&msg, ", "); in Check() 368 LOG(INFO) << "JNI: call to " << function_name_ << "(" << msg << ")"; in Check() 372 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")"; in Check() 375 LOG(INFO) << "JNI: -> " << function_name_ << "(" << msg << ")"; in Check() 379 … LOG(INFO) << StringPrintf("JNI: %*s<- %s returned %s", indent_, "", function_name_, msg.c_str()); in Check() 407 std::string msg; in CheckNonHeap() local 409 TraceNonHeapValue(fmt[i], args[i], &msg); in CheckNonHeap() 411 StringAppendF(&msg, ", "); in CheckNonHeap() [all …]
|
D | reference_table.cc | 102 std::string msg(StringPrintf("%5zd of %s", total, className.c_str())); in DumpSummaryLine() local 104 StringAppendF(&msg, " (%d unique instances)", equiv + 1); in DumpSummaryLine() 106 os << " " << msg << "\n"; in DumpSummaryLine()
|
D | jni_internal.h | 39 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
|
D | thread.cc | 462 std::string msg(child_jni_env_ext.get() == nullptr ? in CreateNativeThread() local 467 soa.Self()->ThrowOutOfMemoryError(msg.c_str()); in CreateNativeThread() 1325 void Thread::AssertNoPendingExceptionForNewException(const char* msg) const { in AssertNoPendingExceptionForNewException() 1329 LOG(FATAL) << "Throwing new exception '" << msg << "' with unexpected pending exception: " in AssertNoPendingExceptionForNewException() 1862 std::string msg; in ThrowNewExceptionV() local 1863 StringAppendV(&msg, fmt, ap); in ThrowNewExceptionV() 1864 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV() 1868 const char* msg) { in ThrowNewException() argument 1870 AssertNoPendingExceptionForNewException(msg); in ThrowNewException() 1871 ThrowNewWrappedException(exception_class_descriptor, msg); in ThrowNewException() [all …]
|
/art/runtime/jdwp/ |
D | jdwp_adb.cc | 147 msghdr msg; in ReceiveClientFd() local 148 msg.msg_name = nullptr; in ReceiveClientFd() 149 msg.msg_namelen = 0; in ReceiveClientFd() 150 msg.msg_iov = &iov; in ReceiveClientFd() 151 msg.msg_iovlen = 1; in ReceiveClientFd() 152 msg.msg_flags = 0; in ReceiveClientFd() 153 msg.msg_control = cm_un.buffer; in ReceiveClientFd() 154 msg.msg_controllen = sizeof(cm_un.buffer); in ReceiveClientFd() 156 cmsghdr* cmsg = CMSG_FIRSTHDR(&msg); in ReceiveClientFd() 157 cmsg->cmsg_len = msg.msg_controllen; in ReceiveClientFd() [all …]
|
/art/test/etc/ |
D | run-test-jar | 5 msg() { function 123 msg "Spawning from zygote" 195 msg "Performing optimizations" 198 msg "Skipping optimizations" 203 msg "Performing verification" 207 msg "Skipping verification" 211 msg "------------------------------" 219 msg "Waiting for jdb to connect:" 221 msg " adb forward tcp:$PORT tcp:$PORT" 223 msg " jdb -attach localhost:$PORT"
|
/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/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/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/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/088-monitor-verification/src/ |
D | MyException.java | 21 public MyException(String msg) { in MyException() argument 22 super(msg); in MyException()
|
/art/runtime/base/ |
D | logging.cc | 204 std::string msg(data_->ToString()); in ~LogMessage() local 209 if (msg.find('\n') == std::string::npos) { in ~LogMessage() 210 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetSeverity(), msg.c_str()); in ~LogMessage() 212 msg += '\n'; in ~LogMessage() 214 while (i < msg.size()) { in ~LogMessage() 215 size_t nl = msg.find('\n', i); in ~LogMessage() 216 msg[nl] = '\0'; in ~LogMessage() 217 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetSeverity(), &msg[i]); in ~LogMessage()
|
/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()
|
D | LogFileListener.java | 75 private void write(String msg) { in write() argument 80 writer.write(msg + "\n"); in write() 266 public void handleMessage(String msg) { in handleMessage() argument 267 write(msg); in handleMessage()
|
D | MultiplexerListener.java | 186 public void handleMessage(String msg) { in handleMessage() argument 188 listener.handleMessage(msg); in handleMessage()
|
D | BaseListener.java | 72 public void handleMessage(String msg) { } in handleMessage() argument
|
/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/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/test/004-UnsafeTest/src/ |
D | Main.java | 25 private static void check(int actual, int expected, String msg) { in check() argument 27 System.out.println(msg + " : " + actual + " != " + expected); in check() 32 private static void check(long actual, long expected, String msg) { in check() argument 34 System.out.println(msg + " : " + actual + " != " + expected); in check()
|
/art/runtime/mirror/ |
D | throwable.cc | 91 String* msg = GetDetailMessage(); in Dump() local 92 if (msg != nullptr) { in Dump() 93 result += msg->ToModifiedUtf8(); in Dump()
|
/art/test/439-npe/src/ |
D | Main.java | 232 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; in assertEquals() local 233 throw new AssertionError(msg); in assertEquals()
|