Home
last modified time | relevance | path

Searched refs:log (Results 1 – 25 of 43) sorted by relevance

12

/art/tools/checker/common/
Dlogger.py47 def log(content, level=Level.INFO, color=Color.DEFAULT, new_line=True, out=sys.stdout): member in Logger
59 Logger.log("error: ", Logger.Level.ERROR, color=Logger.Color.RED, new_line=False,
61 Logger.log(msg, Logger.Level.ERROR, out=sys.stderr)
71 Logger.log(loc, Logger.Level.ERROR, color=Logger.Color.GRAY, new_line=False,
73 Logger.log(line_text, Logger.Level.ERROR, out=sys.stderr)
80 Logger.log(var, Logger.Level.ERROR, color=Logger.Color.GREEN, new_line=False,
82 Logger.log(padding, Logger.Level.ERROR, new_line=False, out=sys.stderr)
83 Logger.log(" = ", Logger.Level.ERROR, new_line=False, out=sys.stderr)
84 Logger.log(variables[var], Logger.Level.ERROR, out=sys.stderr)
90 Logger.log("TEST ", color=Logger.Color.PURPLE, new_line=False)
[all …]
/art/test/2232-write-metrics-to-log/
DAndroid.bp3 // Build rules for ART run-test `2232-write-metrics-to-log`.
16 name: "art-run-test-2232-write-metrics-to-log",
21 ":art-run-test-2232-write-metrics-to-log-expected-stdout",
22 ":art-run-test-2232-write-metrics-to-log-expected-stderr",
28 name: "art-run-test-2232-write-metrics-to-log-expected-stdout",
29 out: ["art-run-test-2232-write-metrics-to-log-expected-stdout.txt"],
36 name: "art-run-test-2232-write-metrics-to-log-expected-stderr",
37 out: ["art-run-test-2232-write-metrics-to-log-expected-stderr.txt"],
/art/tools/dexfuzz/src/dexfuzz/
DLog.java45 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/sigchainlib/
Dsigchain_fake.cc33 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()
Dlog.h24 #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/test/123-inline-execute2/
Dexpected-stdout.txt90 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/
Dtransaction.h167 ObjectLog(ObjectLog&& log) = default;
186 FieldValue(FieldValue&& log) = default;
216 ArrayLog(ArrayLog&& log) = default;
250 InternStringLog(const InternStringLog& log) = delete;
251 InternStringLog& operator=(const InternStringLog& log) = delete;
252 InternStringLog(InternStringLog&& log) = default;
253 InternStringLog& operator=(InternStringLog&& log) = delete;
291 void LogInternedString(InternStringLog&& log)
Dtransaction.cc271 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()
290 void Transaction::LogInternedString(InternStringLog&& log) { in LogInternedString() argument
293 intern_string_logs_.push_front(std::move(log)); in LogInternedString()
[all …]
/art/tools/jvmti-agents/ti-fast/
DREADME.md20 > `[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/tools/luci/config/
Dvalidate.sh6 lucicfg validate main.star -log-level debug
/art/test/2041-bad-cleaner/
Dinfo.txt4 see a message to that effect in the log output).
/art/tools/checker/
Dchecker.py55 Logger.log(compiler_pass.name)
66 Logger.log((str(cur_line_no) + ":").ljust(len_line_no) + line)
/art/odrefresh/
DAndroid.bp235 tools: ["stats-log-api-gen"],
236 …cmd: "$(location stats-log-api-gen) --header $(genDir)/statslog_odrefresh.h --module art --namespa…
244 tools: ["stats-log-api-gen"],
245 …cmd: "$(location stats-log-api-gen) --cpp $(genDir)/statslog_odrefresh.cpp --module art --namespac…
DTODO.md14 4. Add a log file that tracks status of recent compilation.
/art/runtime/base/
Dmutex.cc316 ContentionLogEntry* log = data->contention_log; in RecordContention() local
319 if (log[slot].blocked_tid == blocked_tid && in RecordContention()
320 log[slot].owner_tid == blocked_tid) { in RecordContention()
321 ++log[slot].count; in RecordContention()
328 log[new_slot].blocked_tid = blocked_tid; in RecordContention()
329 log[new_slot].owner_tid = owner_tid; in RecordContention()
330 log[new_slot].count.store(1, std::memory_order_relaxed); in RecordContention()
338 const ContentionLogEntry* log = data->contention_log; in DumpContention() local
350 uint64_t blocked_tid = log[i].blocked_tid; in DumpContention()
351 uint64_t owner_tid = log[i].owner_tid; in DumpContention()
[all …]
/art/test/030-bad-finalizer/
Dinfo.txt3 the following in the log output).
/art/libartbase/base/unix_file/
DREADME10 This code will not log, because it can't know whether that's appropriate in
/art/test/123-inline-execute2/src/
DMain.java53 + 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/
DREADME.txt31 $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/test/update-rollback/src/com/android/tests/apex/art/
DBrokenArtApexUpdateRollbackHostTest.java25 import com.android.tradefed.log.LogUtil.CLog;
/art/runtime/arch/x86/
Dentrypoints_init_x86.cc79 qpoints->SetLog(log); in InitEntryPoints()
/art/libartservice/service/
DAndroid.bp167 tools: ["stats-log-api-gen"],
168 …cmd: "$(location stats-log-api-gen) --java $(out) --module art --javaPackage com.android.server.ar…
/art/tools/checker/match/
Dfile.py348 Logger.log("".join(cfg_file), Logger.Level.ERROR)
365 Logger.log("".join(cfg_file), Logger.Level.ERROR)
/art/runtime/arch/x86_64/
Dentrypoints_init_x86_64.cc102 qpoints->SetLog(log); in InitEntryPoints()
/art/test/988-method-trace/src/art/
DTest988Intrinsics.java106 java.lang.Math.log(0.0); in test()

12