Searched refs:barrier_ (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | barrier_test.cc | 31 : barrier_(barrier), in CheckWaitTask() 38 barrier_->Wait(self); in Run() 48 Barrier* const barrier_; member in art::CheckWaitTask 90 : barrier_(barrier), in CheckPassTask() 98 barrier_->Pass(self); in Run() 106 Barrier* const barrier_; member in art::CheckPassTask
|
D | monitor_test.cc | 52 std::unique_ptr<Barrier> barrier_; member in art::MonitorTest 95 monitor_test_->barrier_->Wait(self); // Let the other thread know we're done. in Run() 141 monitor_test_->barrier_->Wait(self); // Wait for the other thread to set up the monitor. in Run() 179 monitor_test_->barrier_->Wait(self); // Wait for the other thread to set up the monitor. in Run() 255 test->barrier_ = std::make_unique<Barrier>(2); in CommonWaitSetup()
|
D | cha.cc | 252 : barrier_(0), in CHACheckpoint() 262 barrier_.Pass(self); in Run() 268 barrier_.Increment(self, threads_running_checkpoint); in WaitForThreadsToRunThroughCheckpoint() 273 Barrier barrier_; member in art::CHACheckpoint
|
D | thread_list.cc | 197 barrier_(0, /*verify_count_on_shutdown=*/false), in DumpCheckpoint() 220 barrier_.Pass(self); in Run() 226 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); in WaitForThreadsToRunThroughCheckpoint() 238 Barrier barrier_; member in art::DumpCheckpoint
|
D | thread.cc | 1633 explicit BarrierClosure(Closure* wrapped) : wrapped_(wrapped), barrier_(0) {} in BarrierClosure() 1637 barrier_.Pass(self); in Run() 1642 barrier_.Increment<Barrier::kDisallowHoldingLocks>(self, 1); in Wait() 1644 barrier_.Increment<Barrier::kAllowHoldingLocks>(self, 1); in Wait() 1650 Barrier barrier_; member in art::BarrierClosure
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 1014 : code_cache_(code_cache), bitmap_(bitmap), barrier_(barrier) {} in MarkCodeClosure() 1053 barrier_->Pass(Thread::Current()); in Run() 1059 Barrier* const barrier_; member in art::jit::MarkCodeClosure
|
/art/openjdkjvmti/ |
D | ti_redefine.cc | 2276 barrier_(0), in REQUIRES_SHARED() 2344 barrier_.Pass(this_thread); in EndDefineClass() 2356 barrier_.Increment(self_, t); in WaitFor() 2362 art::Barrier barrier_; member in openjdkjvmti::ClassDefinitionPauser
|
/art/runtime/gc/ |
D | heap.cc | 1514 explicit TrimIndirectReferenceTableClosure(Barrier* barrier) : barrier_(barrier) { in TrimIndirectReferenceTableClosure() 1520 barrier_->Pass(Thread::Current()); in Run() 1524 Barrier* const barrier_; member in art::gc::TrimIndirectReferenceTableClosure
|