Searched refs:level (Results 1 - 13 of 13) sorted by relevance

/art/runtime/base/
H A Dmutex-inl.h57 static inline void CheckUnattachedThread(LockLevel level) NO_THREAD_SAFETY_ANALYSIS {
66 level == kRuntimeShutdownLock ||
68 level == kAllocatedThreadIdsLock ||
70 level == kModifyLdtLock ||
73 level == kThreadListLock ||
75 level == kLoggingLock ||
77 level == kAbortLock) << level;
87 // Check if a bad Mutex of this level or lower is held.
92 LOG(ERROR) << "Lock level violatio
[all...]
H A Dlogging.h70 // The tag (or '*' for the global level) comes first, followed by a colon
71 // and a letter indicating the minimum priority level we're expected to log.
95 #define UNIMPLEMENTED(level) LOG(level) << __PRETTY_FUNCTION__ << " unimplemented "
259 // Allows to temporarily change the minimum severity level for logging.
262 explicit ScopedLogSeverity(LogSeverity level);
H A Dlogging.cc49 // lower-level logging is necessary.
306 ScopedLogSeverity::ScopedLogSeverity(LogSeverity level) { argument
308 gMinimumLogSeverity = level;
H A Dmutex.h51 // equal level to a lock a thread holds is invalid. The lock hierarchy achieves a cycle free
149 BaseMutex(const char* name, LockLevel level);
208 explicit Mutex(const char* name, LockLevel level = kDefaultMutexLevel, bool recursive = false);
292 explicit ReaderWriterMutex(const char* name, LockLevel level = kDefaultMutexLevel);
595 // doesn't try to hold a higher level Mutex.
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.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;
H A Dutils.h191 bool PrintFileToLog(const std::string& file_name, LogSeverity level);
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.
/art/tools/
H A Dcpplint.py136 the top-level categories like 'build' and 'whitespace' will
571 def SetVerboseLevel(self, level):
574 self.verbose_level = level
646 def _SetVerboseLevel(level):
648 return _cpplint_state.SetVerboseLevel(level)
651 def _SetCountingStyle(level):
653 _cpplint_state.SetCountingStyle(level)
780 # Not SVN <= 1.6? Try to find a git, hg, or svn top level directory by
837 # the verbosity level isn't high enough, or the filters filter it out.
1044 depth: nesting level a
[all...]
H A Dchecker.py108 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout):
109 if level <= Logger.Verbosity:
/art/test/
H A DAndroid.run-test.mk837 echo "run-test run as top-level target, removing test directory $(ART_HOST_TEST_DIR)" && \

Completed in 250 milliseconds