Home
last modified time | relevance | path

Searched refs:PT_GUARDED_BY (Results 1 – 8 of 8) sorted by relevance

/external/clang/test/SemaCXX/
Dwarn-thread-safety-parsing.cpp7 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) macro
381 int *pgb_ptr_var_arg PT_GUARDED_BY(mu1);
386 int pgb_var_args PT_GUARDED_BY(mu1); // \
393 int *pgb_field_args PT_GUARDED_BY(mu1);
396 class PT_GUARDED_BY(mu1) PGB { // \ in PT_GUARDED_BY() function
400 void pgb_function() PT_GUARDED_BY(mu1); // \
403 void pgb_function_params(int gv_lvar PT_GUARDED_BY(mu1)); // \
407 int *x PT_GUARDED_BY(mu1) = new int(0); // \ in pgb_testfn() local
415 int * pgb_var_arg_1 PT_GUARDED_BY(muWrapper.mu); variable
416 int * pgb_var_arg_2 PT_GUARDED_BY(muDoubleWrapper.muWrapper->mu); variable
[all …]
Dwarn-thread-safety-analysis.cpp10 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) macro
860 int *q PT_GUARDED_BY(mu);
865 int *p GUARDED_BY(mu) PT_GUARDED_BY(mu);
1278 int *q PT_GUARDED_BY(mu);
1283 int *p GUARDED_BY(mu) PT_GUARDED_BY(mu);
3601 int* d PT_GUARDED_BY(mu1_) PT_GUARDED_BY(mu2_);
3807 Data* datap2_ PT_GUARDED_BY(mu_);
3829 Cell* cp PT_GUARDED_BY(cell_mu_);
3841 Foo* foop PT_GUARDED_BY(mu_);
4183 int* a GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
[all …]
/external/clang/test/Sema/
Dwarn-thread-safety-analysis.c7 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) macro
46 int *b_ PT_GUARDED_BY(foo_.mu_) = &a_;
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
Dthread_annotations.h44 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(point_to_guarded_by(x)) macro
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
Dthread_annotations.h74 #define PT_GUARDED_BY(x) \ macro
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
Dthread_annotations.h74 #define PT_GUARDED_BY(x) \ macro
/external/clang/test/PCH/
Dthread-safety-attrs.cpp15 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) macro
/external/clang/docs/
DThreadSafetyAnalysis.rst148 GUARDED_BY(c) and PT_GUARDED_BY(c)
155 ``PT_GUARDED_BY`` is similar, but is intended for use on pointers and smart
163 int *p2 PT_GUARDED_BY(mu);
164 unique_ptr<int> p3 PT_GUARDED_BY(mu);
715 #define PT_GUARDED_BY(x) \