/art/tools/checker/common/ |
D | logger.py | 47 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout): member in Logger 59 Logger.log("error: ", Logger.Level.Error, color=Logger.Color.Red, newLine=False, out=sys.stderr) 60 Logger.log(msg, Logger.Level.Error, out=sys.stderr) 70 Logger.log(loc, Logger.Level.Error, color=Logger.Color.Gray, newLine=False, out=sys.stderr) 71 Logger.log(lineText, Logger.Level.Error, out=sys.stderr) 80 Logger.log(var, Logger.Level.Error, color=Logger.Color.Green, newLine=False, out=sys.stderr) 81 Logger.log(padding, Logger.Level.Error, newLine=False, out=sys.stderr) 82 Logger.log(" = ", Logger.Level.Error, newLine=False, out=sys.stderr) 83 Logger.log(variables[var], Logger.Level.Error, out=sys.stderr) 89 Logger.log("TEST ", color=Logger.Color.Purple, newLine=False) [all …]
|
/art/sigchainlib/ |
D | sigchain_dummy.cc | 33 log("EnsureFrontOfChain is not exported by the main executable."); in EnsureFrontOfChain() 39 log("SetSpecialSignalHandlerFn is not exported by the main executable."); in AddSpecialSignalHandlerFn() 45 log("SetSpecialSignalHandlerFn is not exported by the main executable."); in RemoveSpecialSignalHandlerFn() 50 log("SkipAddSignalHandler is not exported by the main executable."); in SkipAddSignalHandler()
|
D | log.h | 24 #define log(...) async_safe_format_log(ANDROID_LOG_ERROR, "libsigchain", __VA_ARGS__) macro 32 static void log(const char* format, ...) { in log() function 41 #define fatal(...) log(__VA_ARGS__); abort()
|
/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/test/123-inline-execute2/ |
D | expected.txt | 90 Math.log(-3.0) = NaN 98 Math.log(-2.0) = NaN 106 Math.log(-1.0) = NaN 114 Math.log(0.0) = -Infinity 122 Math.log(1.0) = 0.000000000000 130 Math.log(2.0) = 0.693147180560 138 Math.log(3.0) = 1.098612288668 241 StrictMath.log(-3.0) = NaN 249 StrictMath.log(-2.0) = NaN 257 StrictMath.log(-1.0) = NaN [all …]
|
/art/runtime/ |
D | transaction.cc | 255 ArrayLog log; in RecordWriteArray() local 256 it = array_logs_.emplace(array, std::move(log)).first; in RecordWriteArray() 271 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kInsert); in RecordStrongStringInsertion() local 272 LogInternedString(std::move(log)); in RecordStrongStringInsertion() 276 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kInsert); in RecordWeakStringInsertion() local 277 LogInternedString(std::move(log)); in RecordWeakStringInsertion() 281 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kRemove); in RecordStrongStringRemoval() local 282 LogInternedString(std::move(log)); in RecordStrongStringRemoval() 286 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kRemove); in RecordWeakStringRemoval() local 287 LogInternedString(std::move(log)); in RecordWeakStringRemoval() [all …]
|
D | transaction.h | 174 ObjectLog(ObjectLog&& log) = default; 193 FieldValue(FieldValue&& log) = default; 221 ArrayLog(ArrayLog&& log) = default; 254 InternStringLog(InternStringLog&& log) = default; 279 void LogInternedString(InternStringLog&& log)
|
/art/test/909-attach-agent/ |
D | run | 75 --external-log-tags 81 --external-log-tags
|
/art/tools/luci/config/ |
D | luci-logdog.cfg | 6 # Auth groups who can read log streams. 11 # Auth groups who can register and emit new log streams.
|
/art/test/059-finalizer-throw/ |
D | run | 19 exec ${RUN} --external-log-tags "${@}"
|
/art/test/030-bad-finalizer/ |
D | run | 21 ./default-run --external-log-tags "${@}"
|
D | info.txt | 3 the following in the log output).
|
/art/test/151-OpenFileLimit/ |
D | run | 24 ${RUN} --external-log-tags ${flags}
|
/art/test/1336-short-finalizer-timeout/ |
D | run | 21 ./default-run --external-log-tags "$@" --runtime-option -XX:FinalizerTimeoutMs=500
|
/art/tools/jvmti-agents/ti-fast/ |
D | README.md | 20 > `[log,][EventName1[,EventName2[,...]]]` 22 * If 'log' is the first argument the event handlers will LOG(INFO) when they are 23 called. This behavior is static. The no-log methods have no branches and just 27 providing will be listened for and all other arguments (excepting 'log') will
|
/art/test/719-dm-verify-redefinition/ |
D | run | 22 --external-log-tags \
|
/art/tools/checker/ |
D | checker.py | 50 Logger.log(compiler_pass.name) 61 Logger.log((str(curLineNo) + ":").ljust(lenLineNo) + line)
|
/art/runtime/base/ |
D | mutex.cc | 301 ContentionLogEntry* log = data->contention_log; in RecordContention() local 304 if (log[slot].blocked_tid == blocked_tid && in RecordContention() 305 log[slot].owner_tid == blocked_tid) { in RecordContention() 306 ++log[slot].count; in RecordContention() 313 log[new_slot].blocked_tid = blocked_tid; in RecordContention() 314 log[new_slot].owner_tid = owner_tid; in RecordContention() 315 log[new_slot].count.store(1, std::memory_order_relaxed); in RecordContention() 323 const ContentionLogEntry* log = data->contention_log; in DumpContention() local 335 uint64_t blocked_tid = log[i].blocked_tid; in DumpContention() 336 uint64_t owner_tid = log[i].owner_tid; in DumpContention() [all …]
|
/art/test/118-noimage-dex2oat/ |
D | expected.txt | 6 Failed to initialize runtime (check log for details)
|
/art/libartbase/base/unix_file/ |
D | README | 10 This code will not log, because it can't know whether that's appropriate in
|
/art/tools/checker/match/ |
D | file.py | 176 Logger.log(''.join(cfgFile), Logger.Level.Error) 192 Logger.log(''.join(cfgFile), Logger.Level.Error)
|
/art/test/123-inline-execute2/src/ |
D | Main.java | 53 + String.format(Locale.US, "%.12f", Math.log(e))); in main() 97 System.out.println("StrictMath.log(" + e + ") = " + StrictMath.log(e)); in main()
|
/art/runtime/interpreter/mterp/ |
D | README.txt | 31 $handler_size_bits - max size of an instruction handler, log 2 50 If a constant in the file becomes out of sync, the VM will log an error
|
/art/runtime/arch/x86/ |
D | entrypoints_init_x86.cc | 77 qpoints->pLog = log; in InitEntryPoints()
|
/art/runtime/arch/x86_64/ |
D | entrypoints_init_x86_64.cc | 100 qpoints->pLog = log; in InitEntryPoints()
|