Home
last modified time | relevance | path

Searched refs:ABSL_GUARDED_BY (Results 1 – 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/base/
Dcall_once_test.cc34 int running_thread_count ABSL_GUARDED_BY(counters_mu) = 0;
35 int call_once_invoke_count ABSL_GUARDED_BY(counters_mu) = 0;
36 int call_once_finished_count ABSL_GUARDED_BY(counters_mu) = 0;
37 int call_once_return_count ABSL_GUARDED_BY(counters_mu) = 0;
38 bool done_blocking ABSL_GUARDED_BY(counters_mu) = false;
Dthread_annotations.h58 #define ABSL_GUARDED_BY(x) __attribute__((guarded_by(x))) macro
60 #define ABSL_GUARDED_BY(x) macro
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dblocking_counter.h94 int num_waiting_ ABSL_GUARDED_BY(lock_);
95 bool done_ ABSL_GUARDED_BY(lock_);
Dbarrier.h73 int num_to_block_ ABSL_GUARDED_BY(lock_);
74 int num_to_exit_ ABSL_GUARDED_BY(lock_);
Dmutex_test.cc429 bool barrier ABSL_GUARDED_BY(barrier_mu) = false; in TEST()
432 bool release ABSL_GUARDED_BY(release_mu) = false; in TEST()
470 bool barrier ABSL_GUARDED_BY(barrier_mu) = false; in TEST()
473 bool release ABSL_GUARDED_BY(release_mu) = false; in TEST()
Dmutex.cc229 ABSL_GUARDED_BY(deadlock_graph_mu) ABSL_PT_GUARDED_BY(deadlock_graph_mu);
299 int refcount ABSL_GUARDED_BY(synch_event_mu);
302 SynchEvent *next ABSL_GUARDED_BY(synch_event_mu);
316 } * synch_event[kNSynchEvent] ABSL_GUARDED_BY(synch_event_mu);
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcordz_info.h196 std::atomic<CordzInfo*> head ABSL_GUARDED_BY(mutex){nullptr}; in ABSL_GUARDED_BY() function
243 CordRep* rep_ ABSL_GUARDED_BY(mutex_);
Dcordz_handle.h90 std::atomic<CordzHandle*> dq_tail ABSL_GUARDED_BY(mutex){nullptr}; in ABSL_GUARDED_BY() function
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dpool_urbg.cc78 uint32_t state_[kState] ABSL_GUARDED_BY(mu_); // First to satisfy alignment.
81 size_t next_ ABSL_GUARDED_BY(mu_);
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/
Dusage.cc424 ABSL_GUARDED_BY(help_attributes_guard) = nullptr;
425 ABSL_CONST_INIT HelpMode help_mode ABSL_GUARDED_BY(help_attributes_guard) =
427 ABSL_CONST_INIT HelpFormat help_format ABSL_GUARDED_BY(help_attributes_guard) =
Dprogram_name.cc34 ABSL_GUARDED_BY(program_name_guard) = nullptr;
Dflag.h602 bool modified_ : 1 ABSL_GUARDED_BY(*DataGuard());
604 bool on_command_line_ : 1 ABSL_GUARDED_BY(*DataGuard());
613 FlagCallback* callback_ ABSL_GUARDED_BY(*DataGuard());
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
Dparse.cc65 ABSL_GUARDED_BY(processing_checks_guard) = false;
67 ABSL_GUARDED_BY(processing_checks_guard) = false;
69 ABSL_GUARDED_BY(processing_checks_guard) = false;
73 ABSL_GUARDED_BY(specified_flags_guard) = nullptr;
Dusage.cc35 ABSL_GUARDED_BY(usage_message_guard) = nullptr;
Dusage_config.cc109 ABSL_GUARDED_BY(custom_usage_config_guard) = nullptr;
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
Dthread_pool.h85 std::queue<std::function<void()>> queue_ ABSL_GUARDED_BY(mu_);
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dthread_identity_test.cc35 ABSL_CONST_INIT static int num_identities_reused ABSL_GUARDED_BY(map_lock);
Dlow_level_alloc.cc207 AllocList freelist ABSL_GUARDED_BY(mu);
209 int32_t allocation_count ABSL_GUARDED_BY(mu);
219 uint32_t random ABSL_GUARDED_BY(mu);
Dsysinfo.cc425 ABSL_GUARDED_BY(tid_lock) = nullptr;
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dhashtablez_sampler.h89 HashtablezInfo* dead ABSL_GUARDED_BY(init_mu);
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dclock.cc183 uint64_t last_now_cycles ABSL_GUARDED_BY(lock){0}; in ABSL_GUARDED_BY() function