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

  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
thread_annotations.h 59 // GUARDED_BY allows the user to specify a particular lock that should be
63 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
73 // int *q GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
thread_annotations.h 59 // GUARDED_BY allows the user to specify a particular lock that should be
63 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
73 // 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)))
48 int a_ GUARDED_BY(foo_.mu_);
  /art/runtime/base/
macros.h 166 #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))
187 #define GUARDED_BY(x)
  /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/clang/test/SemaCXX/
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_var_args __attribute__((guarded_by(mu1, mu2))); // \
311 // expected-error {{'guarded_by' attribute takes one argument}}
313 int gb_var_noargs __attribute__((guarded_by)); // \
314 // expected-error {{'guarded_by' attribute takes one argument}}
318 int gb_field_noargs __attribute__((guarded_by)); // \
    [all...]
warn-thread-safety-analysis.cpp 8 #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)));
384 int *pgb_field __attribute__((guarded_by(sls_mu2)))
400 int gb_field __attribute__((guarded_by(sls_mu)));
412 GBFoo GlobalGBFoo __attribute__((guarded_by(sls_mu)));
498 int a __attribute__((guarded_by(mu)));
512 int c __attribute__((guarded_by(mu)));
519 int a_ __attribute__((guarded_by(mu1_)))
    [all...]

Completed in 269 milliseconds