OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PT_GUARDED_BY
(Results
1 - 9
of
9
) sorted by null
/external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp
7
#define
PT_GUARDED_BY
(x) __attribute__ ((
pt_guarded_by
(x)))
372
#if !__has_attribute(
pt_guarded_by
)
373
#error "Should support
pt_guarded_by
attribute"
378
int *pgb_var_noargs __attribute__((
pt_guarded_by
)); // \
379
// expected-error {{'
pt_guarded_by
' attribute takes one argument}}
381
int *pgb_ptr_var_arg
PT_GUARDED_BY
(mu1);
383
int *pgb_ptr_var_args __attribute__((
pt_guarded_by
(mu1, mu2))); // \
384
// expected-error {{'
pt_guarded_by
' attribute takes one argument}}
386
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)))
380
int *pgb_var __attribute__((
pt_guarded_by
(sls_mu)));
386
__attribute__((
pt_guarded_by
(sls_mu)));
522
int *q __attribute__((
pt_guarded_by
(mu)));
852
// Test various usage of GUARDED_BY and
PT_GUARDED_BY
annotations, especially
860
int *q
PT_GUARDED_BY
(mu);
865
int *p GUARDED_BY(mu)
PT_GUARDED_BY
(mu);
1270
// Test various usage of GUARDED_BY and
PT_GUARDED_BY
annotations, especially
1278
int *q
PT_GUARDED_BY
(mu)
[
all
...]
/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/chromium_org/third_party/webrtc/base/
thread_annotations.h
43
// int *q GUARDED_BY(mu1)
PT_GUARDED_BY
(mu2);
44
#define
PT_GUARDED_BY
(x) THREAD_ANNOTATION_ATTRIBUTE__(point_to_guarded_by(x))
/external/clang/test/Sema/
warn-thread-safety-analysis.c
7
#define
PT_GUARDED_BY
(x) __attribute__ ((
pt_guarded_by
(x)))
46
int *b_
PT_GUARDED_BY
(foo_.mu_) = &a_;
/art/runtime/base/
macros.h
199
#define
PT_GUARDED_BY
(x)
/external/clang/test/PCH/
thread-safety-attrs.cpp
15
#define
PT_GUARDED_BY
(x) __attribute__ ((
pt_guarded_by
(x)))
/art/runtime/
debugger.h
677
static AllocRecord* recent_allocation_records_
PT_GUARDED_BY
(Locks::alloc_tracker_lock_);
Completed in 325 milliseconds