Home
last modified time | relevance | path

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

/art/runtime/
Dinstrumentation.h216 void InstrumentQuickAllocEntryPoints() REQUIRES(!Locks::instrument_entrypoints_lock_);
217 void UninstrumentQuickAllocEntryPoints() REQUIRES(!Locks::instrument_entrypoints_lock_);
219 REQUIRES(Locks::instrument_entrypoints_lock_, !Locks::thread_list_lock_,
222 REQUIRES(Locks::instrument_entrypoints_lock_, !Locks::thread_list_lock_,
Dinstrumentation.cc640 Locks::instrument_entrypoints_lock_->AssertHeld(self); in SetEntrypointsInstrumented()
656 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); in InstrumentQuickAllocEntryPoints()
661 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); in UninstrumentQuickAllocEntryPoints()
666 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); in InstrumentQuickAllocEntryPointsLocked()
674 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); in UninstrumentQuickAllocEntryPointsLocked()
Druntime.h445 REQUIRES(!Locks::instrument_entrypoints_lock_, !Locks::mutator_lock_);
Druntime.cc1430 MutexLock mu(self, *Locks::instrument_entrypoints_lock_); in SetStatsEnabled()
/art/runtime/base/
Dmutex.h561 static Mutex* instrument_entrypoints_lock_; variable
598 static MutatorMutex* mutator_lock_ ACQUIRED_AFTER(instrument_entrypoints_lock_);
Dmutex.cc42 Mutex* Locks::instrument_entrypoints_lock_ = nullptr; member in art::Locks
970 DCHECK(instrument_entrypoints_lock_ == nullptr); in Init()
971 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level); in Init()