Searched refs:level (Results 1 - 16 of 16) 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.h27 NONE, // Fake level, don't log at all.
75 // The tag (or '*' for the global level) comes first, followed by a colon
76 // and a letter indicating the minimum priority level we're expected to log.
100 #define UNIMPLEMENTED(level) LOG(level) << __PRETTY_FUNCTION__ << " unimplemented "
264 // Allows to temporarily change the minimum severity level for logging.
267 explicit ScopedLogSeverity(LogSeverity level);
H A Dmutex.h52 // equal level to a lock a thread holds is invalid. The lock hierarchy achieves a cycle free
158 BaseMutex(const char* name, LockLevel level);
217 explicit Mutex(const char* name, LockLevel level = kDefaultMutexLevel, bool recursive = false);
306 explicit ReaderWriterMutex(const char* name, LockLevel level = kDefaultMutexLevel);
425 explicit MutatorMutex(const char* name, LockLevel level = kDefaultMutexLevel)
426 : ReaderWriterMutex(name, level) {}
640 // doesn't try to hold a higher level Mutex.
H A Dlogging.cc49 // lower-level logging is necessary.
317 ScopedLogSeverity::ScopedLogSeverity(LogSeverity level) { argument
319 gMinimumLogSeverity = level;
H A Dmutex.cc146 BaseMutex::BaseMutex(const char* name, LockLevel level) : level_(level), name_(name) { argument
210 << "(level " << LockLevel(i) << ") while performing wait on "
211 << "\"" << name_ << "\" (level " << level_ << ")";
315 Mutex::Mutex(const char* name, LockLevel level, bool recursive) argument
316 : BaseMutex(name, level), recursive_(recursive), recursion_count_(0) {
453 LOG(FATAL) << GetName() << " level=" << level_ << " self=" << name1
505 << " level=" << static_cast<int>(level_)
516 ReaderWriterMutex::ReaderWriterMutex(const char* name, LockLevel level) argument
517 : BaseMutex(name, level)
[all...]
/art/test/970-iface-super-resolution-generated/
H A Dbuild34 if $JACK -D jack.java.source.version=1.8 -D jack.android.min-api-level=24 2>/dev/null; then
/art/tools/checker/common/
H A Dlogger.py47 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout):
48 if level <= Logger.Verbosity:
/art/compiler/debug/
H A Delf_gnu_debugdata_writer.h40 lzma2Props.lzmaProps.level = 1; // Fast compression.
/art/runtime/openjdkjvm/
H A DOpenjdkJvm.cc236 JNIEXPORT jint JVM_SetSockOpt(jint fd, int level, int optname, argument
238 return TEMP_FAILURE_RETRY(setsockopt(fd, level, optname, optval, optlen));
245 JNIEXPORT jint JVM_GetSockOpt(jint fd, int level, int optname, char* optval, argument
248 int cc = TEMP_FAILURE_RETRY(getsockopt(fd, level, optname, optval, &len));
/art/runtime/
H A Dinstrumentation.cc570 // Store the instrumentation level for this key or remove it.
579 // Look for the highest required instrumentation level.
876 InstrumentationLevel level; local
878 level = InstrumentationLevel::kInstrumentWithInterpreter;
880 level = InstrumentationLevel::kInstrumentWithInstrumentationStubs;
882 ConfigureStubs(key, level);
H A Dthread.h948 BaseMutex* GetHeldMutex(LockLevel level) const {
949 return tlsPtr_.held_mutexes[level];
952 void SetHeldMutex(LockLevel level, BaseMutex* mutex) { argument
953 tlsPtr_.held_mutexes[level] = mutex;
H A Dutils.cc157 bool PrintFileToLog(const std::string& file_name, LogSeverity level) { argument
173 LOG(level) << buf;
184 LOG(level) << buf;
203 LOG(level) << buf;
H A Dutils.h214 bool PrintFileToLog(const std::string& file_name, LogSeverity level);
H A Dinstrumentation_test.cc152 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { argument
160 instr->ConfigureStubs(key, level);
518 // Deoptimizing a method does not change instrumentation level.
/art/tools/
H A Dcpplint.py140 the top-level categories like 'build' and 'whitespace' will
579 def SetQuiet(self, level):
582 self.quiet = level
586 def SetVerboseLevel(self, level):
589 self.verbose_level = level
662 def _SetQuiet(level):
664 return _cpplint_state.SetQuiet(level)
672 def _SetVerboseLevel(level):
674 return _cpplint_state.SetVerboseLevel(level)
677 def _SetCountingStyle(level)
[all...]
/art/test/
H A DAndroid.run-test.mk927 echo "run-test run as top-level target, removing test directory $(ART_HOST_TEST_DIR)" && \

Completed in 6726 milliseconds