Home
last modified time | relevance | path

Searched defs:log (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dtransaction.cc169 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kInsert); in RecordStrongStringInsertion() local
174 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kInsert); in RecordWeakStringInsertion() local
179 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kRemove); in RecordStrongStringRemoval() local
184 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kRemove); in RecordWeakStringRemoval() local
188 void Transaction::LogInternedString(const InternStringLog& log) { in LogInternedString()
/art/sigchainlib/
Dsigchain_dummy.cc36 static void log(const char* format, ...) { in log() function
Dsigchain.cc101 static void log(const char* format, ...) { in log() function
/art/tools/dexfuzz/src/dexfuzz/
DLog.java64 private static void log(LogTag tag, String msg) { in log() method in Log
/art/runtime/base/
Dmutex.cc233 ContentionLogEntry* log = data->contention_log; in RecordContention() local
255 const ContentionLogEntry* log = data->contention_log; in DumpContention() local
/art/tools/
Dchecker.py108 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout): member in Logger