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
390 std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu);
391 class SHARED_LOCKABLE MutatorMutex : public ReaderWriterMutex {
393 explicit MutatorMutex(const char* name, LockLevel level = kDefaultMutexLevel)
395 ~MutatorMutex() {} in ~MutatorMutex()
400 const MutatorMutex& operator!() const { return *this; }
407 DISALLOW_COPY_AND_ASSIGN(MutatorMutex);
Dlocks.h33 class SHARED_LOCKABLE MutatorMutex; variable
225 static MutatorMutex* mutator_lock_ ACQUIRED_AFTER(instrument_entrypoints_lock_);
Dmutex-inl.h294 inline void MutatorMutex::TransitionFromRunnableToSuspended(Thread* self) { in TransitionFromRunnableToSuspended()
299 inline void MutatorMutex::TransitionFromSuspendedToRunnable(Thread* self) { in TransitionFromSuspendedToRunnable()
Dlocks.cc52 MutatorMutex* Locks::mutator_lock_ = nullptr;
180 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level); in Init()
Dmutex.cc776 std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) { in operator <<()