Home
last modified time | relevance | path

Searched refs:PT_GUARDED_BY (Results 1 – 14 of 14) 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
902 int *q PT_GUARDED_BY(mu);
907 int *p GUARDED_BY(mu) PT_GUARDED_BY(mu);
1320 int *q PT_GUARDED_BY(mu);
1325 int *p GUARDED_BY(mu) PT_GUARDED_BY(mu);
3658 int* d PT_GUARDED_BY(mu1_) PT_GUARDED_BY(mu2_);
3864 Data* datap2_ PT_GUARDED_BY(mu_);
3886 Cell* cp PT_GUARDED_BY(cell_mu_);
3898 Foo* foop PT_GUARDED_BY(mu_);
4240 int* a GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
[all …]
Dwarn-thread-safety-verbose.cpp7 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) macro
Dwarn-thread-safety-negative.cpp10 #define PT_GUARDED_BY(x) __attribute__ ((pt_guarded_by(x))) macro
/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/tensorflow/tensorflow/compiler/xla/service/interpreter/
Dexecutable.h63 std::unique_ptr<HloEvaluator> evaluator_ PT_GUARDED_BY(evaluator_lock_);
/external/webrtc/webrtc/base/
Dthread_annotations.h44 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(point_to_guarded_by(x)) macro
/external/libchrome/base/
Dthread_annotations.h70 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) macro
/external/tensorflow/tensorflow/core/platform/default/
Dthread_annotations.h62 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) macro
/external/libcxx/utils/google-benchmark/src/
Dmutex.h23 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) macro
/external/google-benchmark/src/
Dmutex.h23 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(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.rst153 GUARDED_BY(c) and PT_GUARDED_BY(c)
160 ``PT_GUARDED_BY`` is similar, but is intended for use on pointers and smart
168 int *p2 PT_GUARDED_BY(mu);
169 unique_ptr<int> p3 PT_GUARDED_BY(mu);
778 #define PT_GUARDED_BY(x) \
/external/tensorflow/tensorflow/core/kernels/
Dsparse_tensors_map_ops.cc160 SparseTensorsMap* sparse_tensors_map_ PT_GUARDED_BY(mu_);