HomeSort by relevance Sort by last modified time
    Searched refs:AtomicFlag (Results 1 - 10 of 10) sorted by null

  /external/libchrome/base/synchronization/
atomic_flag.h 18 class BASE_EXPORT AtomicFlag {
20 AtomicFlag();
21 ~AtomicFlag() = default;
39 DISALLOW_COPY_AND_ASSIGN(AtomicFlag);
cancellation_flag.h 14 // TODO(fdoray): Replace CancellationFlag with AtomicFlag throughout the
16 class CancellationFlag : public AtomicFlag {};
atomic_flag.cc 11 AtomicFlag::AtomicFlag() {
12 // It doesn't matter where the AtomicFlag is built so long as it's always
19 void AtomicFlag::Set() {
24 bool AtomicFlag::IsSet() const {
28 void AtomicFlag::UnsafeResetForTesting() {
atomic_flag_unittest.cc 21 void ExpectSetFlagDeath(AtomicFlag* flag) {
30 void BusyWaitUntilFlagIsSet(AtomicFlag* tested_flag, bool* expected_after_flag,
31 AtomicFlag* done_flag) {
43 AtomicFlag flag;
50 AtomicFlag flag;
60 AtomicFlag tested_flag;
67 AtomicFlag reset_flag;
118 // on this one. AtomicFlag should die on a DCHECK if Set() is called again
124 AtomicFlag flag;
  /external/libchrome/mojo/core/
atomic_flag.h 14 // AtomicFlag is a boolean flag that can be set and tested atomically. It is
33 class AtomicFlag {
35 AtomicFlag() : flag_(0) {}
36 ~AtomicFlag() {}
47 DISALLOW_COPY_AND_ASSIGN(AtomicFlag);
message_pipe_dispatcher.h 102 AtomicFlag in_transit_;
105 AtomicFlag port_closed_;
node_controller.h 314 AtomicFlag shutdown_callback_flag_;
  /external/libchrome/base/test/
scoped_task_environment_unittest.cc 37 AtomicFlag* run_until_idle_returned,
38 AtomicFlag* task_ran) {
46 AtomicFlag run_until_idle_returned;
50 AtomicFlag first_main_thread_task_ran;
56 AtomicFlag first_task_scheduler_task_ran;
61 AtomicFlag second_task_scheduler_task_ran;
62 AtomicFlag second_main_thread_task_ran;
96 AtomicFlag run_until_idle_called;
98 [](AtomicFlag* run_until_idle_called) {
106 AtomicFlag other_run_until_idle_called
    [all...]
  /external/libchrome/base/task_scheduler/
tracked_ref_unittest.cc 35 AtomicFlag under_destruction_;
  /external/libchrome/base/message_loop/
message_loop_perftest.cc 185 [](RunLoop* run_loop, AtomicFlag* stop_posting_threads) {
221 AtomicFlag stop_posting_threads_;

Completed in 115 milliseconds