Searched refs:MutatorMutex (Results 1 – 5 of 5) sorted by relevance
52 class SHARED_LOCKABLE MutatorMutex; variable418 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);
33 class SHARED_LOCKABLE MutatorMutex; variable232 static MutatorMutex* mutator_lock_ ACQUIRED_AFTER(instrument_entrypoints_lock_);
293 inline void MutatorMutex::TransitionFromRunnableToSuspended(Thread* self) { in TransitionFromRunnableToSuspended()298 inline void MutatorMutex::TransitionFromSuspendedToRunnable(Thread* self) { in TransitionFromSuspendedToRunnable()
52 MutatorMutex* Locks::mutator_lock_ = nullptr;184 mutator_lock_ = new MutatorMutex("mutator lock", current_lock_level); in Init()
893 std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu) { in operator <<()