Searched defs:log (Results 1 - 7 of 7) sorted by relevance

/art/sigchainlib/
H A Dsigchain_dummy.cc21 #include <android/log.h>
36 static void log(const char* format, ...) { function
54 log("ClaimSignalChain is not exported by the main executable.");
59 log("UnclaimSignalChain is not exported by the main executable.");
66 log("InvokeUserSignalHandler is not exported by the main executable.");
71 log("InitializeSignalChain is not exported by the main executable.");
77 log("EnsureFrontOfChain is not exported by the main executable.");
83 log("SetSpecialSignalHandlerFn is not exported by the main executable.");
H A Dsigchain.cc18 #include <android/log.h>
101 static void log(const char* format, ...) { function in namespace:art
116 log("Invalid signal %d", signal);
186 log("Warning: Unexpected sigaction action found %p\n", current_action.sa_sigaction);
221 log("Unable to find next sigaction in signal chain");
254 log("Unable to find next sigaction in signal chain");
291 log("Unable to find next sigprocmask in signal chain");
/art/tools/dexfuzz/src/dexfuzz/
H A DLog.java45 log(LogTag.DEBUG, msg);
49 log(LogTag.INFO, msg);
53 log(LogTag.WARN, msg);
57 log(LogTag.ERROR, msg);
64 private static void log(LogTag tag, String msg) { method in class:Log
/art/runtime/
H A Dtransaction.cc35 : log_lock_("transaction log lock", kTransactionLogLock), aborted_(false) {
169 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kInsert);
170 LogInternedString(log);
174 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kInsert);
175 LogInternedString(log);
179 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kRemove);
180 LogInternedString(log);
184 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kRemove);
185 LogInternedString(log);
188 void Transaction::LogInternedString(const InternStringLog& log) { argument
[all...]
/art/tools/
H A Dchecker.py108 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout): member in class: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((st
[all...]
H A Dcpplint.py81 import math # for log namespace
719 error_level = int(math.log(self.lines_in_function / base_trigger, 2))
862 We log where the error was found, and also our confidence in the error,
/art/runtime/base/
H A Dmutex.cc233 ContentionLogEntry* log = data->contention_log; local
236 if (log[slot].blocked_tid == blocked_tid &&
237 log[slot].owner_tid == blocked_tid) {
238 ++log[slot].count;
245 log[new_slot].blocked_tid = blocked_tid;
246 log[new_slot].owner_tid = owner_tid;
247 log[new_slot].count.StoreRelaxed(1);
255 const ContentionLogEntry* log = data->contention_log; local
267 uint64_t blocked_tid = log[i].blocked_tid;
268 uint64_t owner_tid = log[
[all...]

Completed in 144 milliseconds