Home
last modified time | relevance | path

Searched refs:instrument_entrypoints_lock_ (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dinstrumentation.h197 void InstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::instrument_entrypoints_lock_);
198 void UninstrumentQuickAllocEntryPoints() LOCKS_EXCLUDED(Locks::instrument_entrypoints_lock_);
200 EXCLUSIVE_LOCKS_REQUIRED(Locks::instrument_entrypoints_lock_)
203 EXCLUSIVE_LOCKS_REQUIRED(Locks::instrument_entrypoints_lock_)
494 GUARDED_BY(Locks::instrument_entrypoints_lock_);
Dinstrumentation.cc610 Locks::instrument_entrypoints_lock_->AssertHeld(self); in SetEntrypointsInstrumented()
625 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); in InstrumentQuickAllocEntryPoints()
630 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); in UninstrumentQuickAllocEntryPoints()
635 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); in InstrumentQuickAllocEntryPointsLocked()
643 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); in UninstrumentQuickAllocEntryPointsLocked()
Druntime.h421 void SetStatsEnabled(bool new_state) LOCKS_EXCLUDED(Locks::instrument_entrypoints_lock_,
Druntime.cc1246 MutexLock mu(self, *Locks::instrument_entrypoints_lock_); in SetStatsEnabled()
/art/runtime/base/
Dmutex.h496 static Mutex* instrument_entrypoints_lock_; variable
556 static ReaderWriterMutex* mutator_lock_ ACQUIRED_AFTER(instrument_entrypoints_lock_);
Dmutex.cc44 Mutex* Locks::instrument_entrypoints_lock_ = nullptr; member in art::Locks
947 DCHECK(instrument_entrypoints_lock_ == nullptr); in Init()
948 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level); in Init()