Lines Matching refs:Barrier
28 Barrier::Barrier(int count, bool verify_count_on_shutdown) in Barrier() function in art::Barrier
35 template void Barrier::Increment<Barrier::kAllowHoldingLocks>(Thread* self, int delta);
36 template void Barrier::Increment<Barrier::kDisallowHoldingLocks>(Thread* self, int delta);
38 void Barrier::Pass(Thread* self) { in Pass()
43 void Barrier::Wait(Thread* self) { in Wait()
47 void Barrier::Init(Thread* self, int count) { in Init()
52 template <Barrier::LockHandling locks>
53 void Barrier::Increment(Thread* self, int delta) { in Increment()
73 bool Barrier::Increment(Thread* self, int delta, uint32_t timeout_ms) { in Increment()
94 int Barrier::GetCount(Thread* self) { in GetCount()
99 void Barrier::SetCountLocked(Thread* self, int count) { in SetCountLocked()
106 Barrier::~Barrier() { in ~Barrier()