Searched refs:allocations_paused_thread_ (Results 1 – 2 of 2) sorted by relevance
61 art::Thread* pausing_thread = allocations_paused_thread_.load(std::memory_order_seq_cst); in PauseForAllocation()70 pausing_thread = allocations_paused_thread_.load(std::memory_order_seq_cst); in PauseForAllocation()195 } while (!allocations_paused_thread_.compare_exchange_strong( in PauseAllocations()209 CHECK_EQ(allocations_paused_thread_.load(), self) << "not paused! "; in ResumeAllocations()214 allocations_paused_thread_.store(nullptr, std::memory_order_seq_cst); in ResumeAllocations()
104 std::atomic<art::Thread*> allocations_paused_thread_ = nullptr; variable