/art/sigchainlib/ |
D | sigchain_dummy.cc | 36 static void log(const char* format, ...) { in log() function 54 log("ClaimSignalChain is not exported by the main executable."); in ClaimSignalChain() 59 log("UnclaimSignalChain is not exported by the main executable."); in UnclaimSignalChain() 66 log("InvokeUserSignalHandler is not exported by the main executable."); in InvokeUserSignalHandler() 71 log("InitializeSignalChain is not exported by the main executable."); in InitializeSignalChain() 77 log("EnsureFrontOfChain is not exported by the main executable."); in EnsureFrontOfChain() 83 log("SetSpecialSignalHandlerFn is not exported by the main executable."); in SetSpecialSignalHandlerFn()
|
D | sigchain.cc | 101 static void log(const char* format, ...) { in log() function 116 log("Invalid signal %d", signal); in CheckSignalValid() 186 log("Warning: Unexpected sigaction action found %p\n", current_action.sa_sigaction); in EnsureFrontOfChain() 221 log("Unable to find next sigaction in signal chain"); in sigaction() 254 log("Unable to find next sigaction in signal chain"); in signal() 291 log("Unable to find next sigprocmask in signal chain"); in sigprocmask()
|
/art/tools/dexfuzz/src/dexfuzz/ |
D | Log.java | 45 log(LogTag.DEBUG, msg); in debug() 49 log(LogTag.INFO, msg); in info() 53 log(LogTag.WARN, msg); in warn() 57 log(LogTag.ERROR, msg); in error() 64 private static void log(LogTag tag, String msg) { in log() method in Log
|
/art/runtime/ |
D | transaction.cc | 169 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kInsert); in RecordStrongStringInsertion() local 170 LogInternedString(log); in RecordStrongStringInsertion() 174 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kInsert); in RecordWeakStringInsertion() local 175 LogInternedString(log); in RecordWeakStringInsertion() 179 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kRemove); in RecordStrongStringRemoval() local 180 LogInternedString(log); in RecordStrongStringRemoval() 184 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kRemove); in RecordWeakStringRemoval() local 185 LogInternedString(log); in RecordWeakStringRemoval() 188 void Transaction::LogInternedString(const InternStringLog& log) { in LogInternedString() argument 191 intern_string_logs_.push_front(log); in LogInternedString() [all …]
|
D | transaction.h | 195 void LogInternedString(const InternStringLog& log)
|
/art/tools/ |
D | checker.py | 108 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout): member in Logger 128 Logger.log(location, Logger.Level.Error, color=Logger.Color.Gray, newLine=False, out=sys.stderr) 129 Logger.log("error: ", Logger.Level.Error, color=Logger.Color.Red, newLine=False, out=sys.stderr) 130 Logger.log(msg, Logger.Level.Error, out=sys.stderr) 135 Logger.log("TEST ", color=Logger.Color.Purple, newLine=False) 136 Logger.log(name + "... ", newLine=False) 140 Logger.log("PASS", color=Logger.Color.Blue) 144 Logger.log("FAIL", color=Logger.Color.Red) 720 Logger.log(group.name) 731 Logger.log((str(lineNo) + ":").ljust(lenLineNo) + line)
|
D | cpplint.py | 719 error_level = int(math.log(self.lines_in_function / base_trigger, 2))
|
/art/runtime/base/ |
D | mutex.cc | 233 ContentionLogEntry* log = data->contention_log; in RecordContention() local 236 if (log[slot].blocked_tid == blocked_tid && in RecordContention() 237 log[slot].owner_tid == blocked_tid) { in RecordContention() 238 ++log[slot].count; in RecordContention() 245 log[new_slot].blocked_tid = blocked_tid; in RecordContention() 246 log[new_slot].owner_tid = owner_tid; in RecordContention() 247 log[new_slot].count.StoreRelaxed(1); in RecordContention() 255 const ContentionLogEntry* log = data->contention_log; in DumpContention() local 267 uint64_t blocked_tid = log[i].blocked_tid; in DumpContention() 268 uint64_t owner_tid = log[i].owner_tid; in DumpContention() [all …]
|
/art/test/119-noimage-patchoat/ |
D | expected.txt | 4 Failed to initialize runtime (check log for details)
|
/art/test/118-noimage-dex2oat/ |
D | expected.txt | 5 Failed to initialize runtime (check log for details)
|
/art/test/030-bad-finalizer/ |
D | info.txt | 3 the following in the log output).
|
/art/runtime/base/unix_file/ |
D | README | 10 This code will not log, because it can't know whether that's appropriate in
|
/art/tools/dexfuzz/ |
D | README | 115 8. Check report.log for the full report, including input file and RNG seed for each
|
/art/compiler/jni/ |
D | jni_compiler_test.cc | 520 return log(x); in JNI_TEST() 527 EXPECT_DOUBLE_EQ(log(2.0), result); in RunStaticLogDoubleMethodImpl()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 887 result->SetD(log(value.GetD())); in UnstartedJNIMathLog()
|