Home
last modified time | relevance | path

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

/art/sigchainlib/
Dsigchain_dummy.cc36 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()
Dsigchain.cc101 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/
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/runtime/
Dtransaction.cc169 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 …]
Dtransaction.h195 void LogInternedString(const InternStringLog& log)
/art/tools/
Dchecker.py108 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)
Dcpplint.py719 error_level = int(math.log(self.lines_in_function / base_trigger, 2))
/art/runtime/base/
Dmutex.cc233 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/
Dexpected.txt4 Failed to initialize runtime (check log for details)
/art/test/118-noimage-dex2oat/
Dexpected.txt5 Failed to initialize runtime (check log for details)
/art/test/030-bad-finalizer/
Dinfo.txt3 the following in the log output).
/art/runtime/base/unix_file/
DREADME10 This code will not log, because it can't know whether that's appropriate in
/art/tools/dexfuzz/
DREADME115 8. Check report.log for the full report, including input file and RNG seed for each
/art/compiler/jni/
Djni_compiler_test.cc520 return log(x); in JNI_TEST()
527 EXPECT_DOUBLE_EQ(log(2.0), result); in RunStaticLogDoubleMethodImpl()
/art/runtime/interpreter/
Dunstarted_runtime.cc887 result->SetD(log(value.GetD())); in UnstartedJNIMathLog()