Searched defs:level (Results 1 - 6 of 6) sorted by relevance

/art/runtime/base/
H A Dlogging.cc49 // lower-level logging is necessary.
306 ScopedLogSeverity::ScopedLogSeverity(LogSeverity level) { argument
308 gMinimumLogSeverity = level;
H A Dmutex.cc143 BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) { argument
207 << "(level " << LockLevel(i) << ") while performing wait on "
208 << "\"" << name_ << "\" (level " << level_ << ")";
312 Mutex::Mutex(const char* name, LockLevel level, bool recursive) argument
313 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
450 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
502 << " level=" << static_cast<int>(level_)
513 ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level) argument
514 : BaseMutex(name, level)
[all...]
/art/runtime/
H A Dinstrumentation_test.cc138 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { argument
145 instr->ConfigureStubs(key, level);
495 // Deoptimizing a method does not change instrumentation level.
H A Dinstrumentation.cc543 // Store the instrumentation level for this key or remove it.
552 // Look for the highest required instrumentation level.
831 InstrumentationLevel level; local
833 level = InstrumentationLevel::kInstrumentWithInterpreter;
835 level = InstrumentationLevel::kInstrumentWithInstrumentationStubs;
837 ConfigureStubs(key, level);
H A Dthread.h839 BaseMutex* GetHeldMutex(LockLevel level) const {
840 return tlsPtr_.held_mutexes[level];
843 void SetHeldMutex(LockLevel level, BaseMutex* mutex) { argument
844 tlsPtr_.held_mutexes[level] = mutex;
H A Dutils.cc153 bool PrintFileToLog(const std::string& file_name, LogSeverity level) { argument
169 LOG(level) << buf;
180 LOG(level) << buf;
199 LOG(level) << buf;

Completed in 106 milliseconds