Searched refs:log (Results 1 – 10 of 10) sorted by relevance
/art/sigchainlib/ |
D | sigchain_dummy.cc | 29 static void log(const char* format, ...) { in log() function 43 log("ClaimSignalChain is not exported by the main executable."); in ClaimSignalChain() 48 log("EnsureFrontOfChain is not exported by the main executable."); in EnsureFrontOfChain() 53 log("UnclaimSignalChain is not exported by the main executable."); in UnclaimSignalChain() 58 log("InvokeUserSignalHandler is not exported by the main executable."); in InvokeUserSignalHandler() 63 log("InitializeSignalChain is not exported by the main executable."); in InitializeSignalChain()
|
D | sigchain.cc | 82 static void log(const char* format, ...) { in log() function 97 log("Invalid signal %d", signal); in CheckSignalValid() 151 log("Warning: Unexpected sigaction action found %p\n", current_action.sa_sigaction); in EnsureFrontOfChain() 187 log("Unable to find next sigaction in signal chain"); in sigaction() 218 log("Unable to find next sigprocmask in signal chain"); in sigprocmask()
|
/art/runtime/ |
D | transaction.cc | 94 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kInsert); in RecordStrongStringInsertion() local 95 LogInternedString(log); in RecordStrongStringInsertion() 99 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kInsert); in RecordWeakStringInsertion() local 100 LogInternedString(log); in RecordWeakStringInsertion() 104 InternStringLog log(s, InternStringLog::kStrongString, InternStringLog::kRemove); in RecordStrongStringRemoval() local 105 LogInternedString(log); in RecordStrongStringRemoval() 109 InternStringLog log(s, InternStringLog::kWeakString, InternStringLog::kRemove); in RecordWeakStringRemoval() local 110 LogInternedString(log); in RecordWeakStringRemoval() 113 void Transaction::LogInternedString(InternStringLog& log) { in LogInternedString() argument 116 intern_string_logs_.push_front(log); in LogInternedString() [all …]
|
D | transaction.h | 162 void LogInternedString(InternStringLog& log)
|
/art/runtime/base/ |
D | mutex.cc | 189 ContentionLogEntry* log = data->contention_log; in RecordContention() local 192 if (log[slot].blocked_tid == blocked_tid && in RecordContention() 193 log[slot].owner_tid == blocked_tid) { in RecordContention() 194 ++log[slot].count; in RecordContention() 201 log[new_slot].blocked_tid = blocked_tid; in RecordContention() 202 log[new_slot].owner_tid = owner_tid; in RecordContention() 203 log[new_slot].count.StoreRelaxed(1); in RecordContention() 211 const ContentionLogEntry* log = data->contention_log; in DumpContention() local 223 uint64_t blocked_tid = log[i].blocked_tid; in DumpContention() 224 uint64_t owner_tid = log[i].owner_tid; in DumpContention() [all …]
|
/art/test/030-bad-finalizer/ |
D | info.txt | 3 the following in the log output).
|
/art/runtime/base/unix_file/ |
D | README | 10 This code will not log, because it can't know whether that's appropriate in
|
/art/runtime/interpreter/ |
D | interpreter.cc | 50 result->SetD(log(value.GetD())); in UnstartedRuntimeJni()
|
/art/compiler/jni/ |
D | jni_compiler_test.cc | 544 return log(x); in JNI_TEST() 552 EXPECT_EQ(log(2.0), result); in RunStaticLogDoubleMethodImpl()
|
/art/tools/ |
D | cpplint.py | 719 error_level = int(math.log(self.lines_in_function / base_trigger, 2))
|