Home
last modified time | relevance | path

Searched refs:logging_lock_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/base/
Dlocks.cc50 Mutex* Locks::logging_lock_ = nullptr; member in art::Locks
126 if (logging_lock_ != nullptr) { in Init()
148 DCHECK(logging_lock_ != nullptr); in Init()
339 DCHECK(logging_lock_ == nullptr); in Init()
340 logging_lock_ = new Mutex("logging lock", current_lock_level, true); in Init()
Dlocks.h368 static Mutex* logging_lock_ ACQUIRED_AFTER(jni_id_lock_);
Dmutex.cc689 if (this != Locks::logging_lock_) { in ExclusiveUnlock()
/art/libartbase/base/
Dlogging.cc99 static std::mutex* logging_lock_ = new std::mutex(); in InitLogging() local
100 std::lock_guard<std::mutex> guard(*logging_lock_); in InitLogging()
/art/runtime/
Dthread_list.cc217 MutexLock mu(self, *Locks::logging_lock_); in Run()