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

  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
thread_annotations.h 73 // int *q GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
74 #define PT_GUARDED_BY(x) \
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
thread_annotations.h 73 // int *q GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
74 #define PT_GUARDED_BY(x) \
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 7 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x)))
49 int *b_ PT_GUARDED_BY(foo_.mu_) = &a_;
  /art/runtime/base/
macros.h 172 #define PT_GUARDED_BY(x) __attribute__ ((point_to_guarded_by(x)))
193 #define PT_GUARDED_BY(x)
  /external/clang/test/PCH/
thread-safety-attrs.cpp 15 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x)))
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 7 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x)))
370 #if !__has_attribute(pt_guarded_by)
371 #error "Should support pt_guarded_by attribute"
376 int *pgb_var_noargs __attribute__((pt_guarded_by)); // \
377 // expected-error {{'pt_guarded_by' attribute takes one argument}}
379 int *pgb_ptr_var_arg PT_GUARDED_BY(mu1);
381 int *pgb_ptr_var_args __attribute__((pt_guarded_by(mu1, mu2))); // \
382 // expected-error {{'pt_guarded_by' attribute takes one argument}}
384 int pgb_var_args PT_GUARDED_BY(mu1); //
    [all...]
warn-thread-safety-analysis.cpp 10 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x)))
379 int *pgb_var __attribute__((pt_guarded_by(sls_mu)));
385 __attribute__((pt_guarded_by(sls_mu)));
521 int *q __attribute__((pt_guarded_by(mu)));
851 // Test various usage of GUARDED_BY and PT_GUARDED_BY annotations, especially
859 int *q PT_GUARDED_BY(mu);
864 int *p GUARDED_BY(mu) PT_GUARDED_BY(mu);
1269 // Test various usage of GUARDED_BY and PT_GUARDED_BY annotations, especially
1277 int *q PT_GUARDED_BY(mu)
    [all...]

Completed in 745 milliseconds