Home
last modified time | relevance | path

Searched refs:allocated_thread_ids_lock_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/base/
Dlocks.cc40 Mutex* Locks::allocated_thread_ids_lock_ = nullptr; member in art::Locks
137 DCHECK(allocated_thread_ids_lock_ != nullptr); in Init()
237 DCHECK(allocated_thread_ids_lock_ == nullptr); in Init()
238 allocated_thread_ids_lock_ = new Mutex("allocated thread ids lock", current_lock_level); in Init()
Dlocks.h285 static Mutex* allocated_thread_ids_lock_ ACQUIRED_AFTER(allocated_monitor_ids_lock_);
288 static Mutex* modify_ldt_lock_ ACQUIRED_AFTER(allocated_thread_ids_lock_);
/art/runtime/
Dthread_list.h235 void ReleaseThreadId(Thread* self, uint32_t id) REQUIRES(!Locks::allocated_thread_ids_lock_);
268 std::bitset<kMaxThreadId> allocated_ids_ GUARDED_BY(Locks::allocated_thread_ids_lock_);
Dthread_list.cc1598 MutexLock mu(self, *Locks::allocated_thread_ids_lock_); in AllocThreadId()
1610 MutexLock mu(self, *Locks::allocated_thread_ids_lock_); in ReleaseThreadId()