Home
last modified time | relevance | path

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

/art/runtime/base/
Dmutex.h52 class SHARED_LOCKABLE MutatorMutex; variable
418 std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu);
419 class SHARED_LOCKABLE MutatorMutex : public ReaderWriterMutex {
421 explicit MutatorMutex(const char* name, LockLevel level = kDefaultMutexLevel)
423 ~MutatorMutex() {} in ~MutatorMutex()
428 const MutatorMutex& operator!() const { return *this; }
435 DISALLOW_COPY_AND_ASSIGN(MutatorMutex);
Dlocks.h33 class SHARED_LOCKABLE MutatorMutex; variable
232 static MutatorMutex* mutator_lock_ ACQUIRED_AFTER(instrument_entrypoints_lock_);
Dmutex-inl.h293 inline void MutatorMutex::TransitionFromRunnableToSuspended(Thread* self) { in TransitionFromRunnableToSuspended()
298 inline void MutatorMutex::TransitionFromSuspendedToRunnable(Thread* self) { in TransitionFromSuspendedToRunnable()
Dlocks.cc52 MutatorMutex* Locks::mutator_lock_ = nullptr;
184 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level); in Init()
Dmutex.cc893 std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) { in operator <<()