Home
last modified time | relevance | path

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

/art/runtime/base/
Dlocks.h195 static Mutex* instrument_entrypoints_lock_ ACQUIRED_AFTER(user_code_suspension_lock_);
232 static MutatorMutex* mutator_lock_ ACQUIRED_AFTER(instrument_entrypoints_lock_);
Dlocks.cc46 Mutex* Locks::instrument_entrypoints_lock_ = nullptr; member in art::Locks
179 DCHECK(instrument_entrypoints_lock_ == nullptr); in Init()
180 instrument_entrypoints_lock_ = new Mutex("instrument entrypoint lock", current_lock_level); in Init()
/art/runtime/
Dinstrumentation.h292 void InstrumentQuickAllocEntryPoints() REQUIRES(!Locks::instrument_entrypoints_lock_);
293 void UninstrumentQuickAllocEntryPoints() REQUIRES(!Locks::instrument_entrypoints_lock_);
295 REQUIRES(Locks::instrument_entrypoints_lock_, !Locks::thread_list_lock_,
298 REQUIRES(Locks::instrument_entrypoints_lock_, !Locks::thread_list_lock_,
Dinstrumentation.cc853 Locks::instrument_entrypoints_lock_->AssertHeld(self); in SetEntrypointsInstrumented()
877 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); in InstrumentQuickAllocEntryPoints()
882 MutexLock mu(Thread::Current(), *Locks::instrument_entrypoints_lock_); in UninstrumentQuickAllocEntryPoints()
887 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); in InstrumentQuickAllocEntryPointsLocked()
895 Locks::instrument_entrypoints_lock_->AssertHeld(Thread::Current()); in UninstrumentQuickAllocEntryPointsLocked()
Druntime.h504 REQUIRES(!Locks::instrument_entrypoints_lock_, !Locks::mutator_lock_);
Druntime.cc2263 MutexLock mu(self, *Locks::instrument_entrypoints_lock_); in SetStatsEnabled()
/art/openjdkjvmti/
Devents.cc1067 ACQUIRED_BEFORE(art::Locks::instrument_entrypoints_lock_);