HomeSort by relevance Sort by last modified time
    Searched defs:GUARDED_BY (Results 1 - 19 of 19) sorted by null

  /device/google/cuttlefish_common/host/frontend/vnc_server/
frame_buffer_watcher.h 66 std::array<StripePtrVec, kNumOrientations> stripes_ GUARDED_BY(stripes_lock_);
68 GUARDED_BY(stripes_lock_) = MakeSeqNumberVec();
70 bool closed_ GUARDED_BY(m_){};
blackboard.h 102 SeqNumberVec most_recent_stripe_seq_nums_ GUARDED_BY(m_) = MakeSeqNumberVec();
104 GUARDED_BY(m_);
105 int jpeg_quality_level_ GUARDED_BY(m_) = 100;
109 FrameBufferWatcher* frame_buffer_watcher_ GUARDED_BY(m_){};
simulated_hw_composer.h 58 bool closed_ GUARDED_BY(m_){};
vnc_client_connection.h 147 bool use_jpeg_compression_ GUARDED_BY(m_) = false;
150 bool closed_ GUARDED_BY(m_){};
152 PixelFormat pixel_format_ GUARDED_BY(m_) = {
166 ScreenOrientation current_orientation_ GUARDED_BY(m_) =
  /external/tensorflow/tensorflow/core/kernels/
variable_ops.h 41 ContainerInfo cinfo_ GUARDED_BY(init_mu_);
42 bool initialized_ GUARDED_BY(init_mu_){false};
  /device/google/cuttlefish_common/common/libs/threads/
thread_annotations.h 30 #define GUARDED_BY(x) \
31 THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
  /external/webrtc/webrtc/base/
thread_annotations.h 29 // GUARDED_BY allows the user to specify a particular lock that should be
33 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
43 // int *q GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 5 #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))
45 int a_ GUARDED_BY(foo_.mu_);
  /external/libchrome/base/
thread_annotations.h 41 // GUARDED_BY()
44 // mutex. GUARDED_BY() allows the user to specify a particular mutex that
50 // int p1 GUARDED_BY(mu);
51 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
69 // int *q GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
99 // int a GUARDED_BY(mu1);
100 // int b GUARDED_BY(mu2);
212 // Similar to NO_THREAD_SAFETY_ANALYSIS_FIXME, this macro marks a GUARDED_BY
214 // warning. It disables the GUARDED_BY
    [all...]
  /external/tensorflow/tensorflow/core/platform/default/
thread_annotations.h 48 // GUARDED_BY allows the user to specify a particular mutex that should be
52 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
61 // int *q GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
  /external/clang/test/SemaCXX/
warn-thread-safety-negative.cpp 8 #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))
51 int a GUARDED_BY(mu);
64 int a GUARDED_BY(mu);
warn-thread-safety-verbose.cpp 5 #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))
46 int a GUARDED_BY(mu); // expected-note3 {{Guarded_by declared here.}}
warn-thread-safety-parsing.cpp 5 #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))
302 #if !__has_attribute(guarded_by)
303 #error "Should support guarded_by attribute"
308 int gb_var_arg GUARDED_BY(mu1);
310 int gb_non_ascii GUARDED_BY(L"wide"); // expected-warning {{ignoring 'guarded_by' attribute because its argument is invalid}}
312 int gb_var_args __attribute__((guarded_by(mu1, mu2))); // \
313 // expected-error {{'guarded_by' attribute takes one argument}}
315 int gb_var_noargs __attribute__((guarded_by)); // \
    [all...]
warn-thread-safety-analysis.cpp 8 #define GUARDED_BY(x) __attribute__((guarded_by(x)))
145 int sls_guardby_var __attribute__((guarded_by(sls_mu))) = 0;
152 int x __attribute__((guarded_by(mu)));
427 int *pgb_field __attribute__((guarded_by(sls_mu2)))
443 int gb_field __attribute__((guarded_by(sls_mu)));
455 GBFoo GlobalGBFoo __attribute__((guarded_by(sls_mu)));
541 int a __attribute__((guarded_by(mu)));
555 int c __attribute__((guarded_by(mu)));
562 int a_ __attribute__((guarded_by(mu1_)))
    [all...]
  /external/google-benchmark/src/
mutex.h 21 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
  /external/libcxx/utils/google-benchmark/src/
mutex.h 21 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
  /art/runtime/jit/
debugger_interface.cc 137 JITDescriptor __jit_debug_descriptor GUARDED_BY(g_jit_debug_lock) {};
144 JITDescriptor __dex_debug_descriptor GUARDED_BY(g_dex_debug_lock) {};
246 static std::map<const DexFile*, JITCodeEntry*> g_dex_debug_entries GUARDED_BY(g_dex_debug_lock);
277 static std::multimap<const void*, JITCodeEntry*> g_jit_debug_entries GUARDED_BY(g_jit_debug_lock);
280 static size_t g_jit_num_unpacked_entries GUARDED_BY(g_jit_debug_lock) = 0;
283 static std::deque<const void*> g_jit_removed_entries GUARDED_BY(g_jit_debug_lock);
  /external/clang/test/PCH/
thread-safety-attrs.cpp 13 #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))
102 int sls_guardby_var __attribute__((guarded_by(sls_mu))) = 0;
109 int x __attribute__((guarded_by(mu)));
  /external/tensorflow/tensorflow/core/common_runtime/eager/
context.h 256 thread_local_policies_ GUARDED_BY(policy_map_mu_);
271 FunctionLibraryDefinition func_lib_def_ GUARDED_BY(functions_mu_){
285 GUARDED_BY(cache_mu_);
291 RunMetadata run_metadata_ GUARDED_BY(metadata_mu_);
292 RunMetadataListener* metadata_listener_ GUARDED_BY(metadata_mu_) = nullptr;
300 std::unique_ptr<ScopedStepContainer> step_container_ GUARDED_BY(metadata_mu_);
307 GUARDED_BY(async_map_mu_);
332 int keep_alive_secs_ GUARDED_BY(remote_state_mu_);
338 bool shutting_down_ GUARDED_BY(keep_alive_thread_shutdown_mu_) = false;

Completed in 2970 milliseconds