OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EXCLUSIVE_TRYLOCK_FUNCTION
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h
43
#ifndef
EXCLUSIVE_TRYLOCK_FUNCTION
44
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(...)
/external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp
15
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(...) __attribute__ ((
exclusive_trylock_function
(__VA_ARGS__)))
33
bool TryLock()
EXCLUSIVE_TRYLOCK_FUNCTION
(true);
708
#if !__has_attribute(
exclusive_trylock_function
)
709
#error "Should support
exclusive_trylock_function
attribute"
715
void etf_function() __attribute__((
exclusive_trylock_function
)); // \
718
void etf_function_args()
EXCLUSIVE_TRYLOCK_FUNCTION
(1, mu2);
720
void etf_function_arg()
EXCLUSIVE_TRYLOCK_FUNCTION
(1);
722
int etf_testfn(int y)
EXCLUSIVE_TRYLOCK_FUNCTION
(1);
725
int x
EXCLUSIVE_TRYLOCK_FUNCTION
(1) = y; //
[
all
...]
warn-thread-safety-analysis.cpp
18
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(...) __attribute__ ((
exclusive_trylock_function
(__VA_ARGS__)))
35
bool TryLock() __attribute__((
exclusive_trylock_function
(true)));
[
all
...]
/art/runtime/base/
macros.h
165
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(...) __attribute__ ((exclusive_trylock(__VA_ARGS__)))
186
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(...)
mutex.h
151
bool ExclusiveTryLock(Thread* self)
EXCLUSIVE_TRYLOCK_FUNCTION
(true);
152
bool TryLock(Thread* self)
EXCLUSIVE_TRYLOCK_FUNCTION
(true) { return ExclusiveTryLock(self); }
240
EXCLUSIVE_TRYLOCK_FUNCTION
(true);
248
bool SharedTryLock(Thread* self)
EXCLUSIVE_TRYLOCK_FUNCTION
(true);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock.h
84
inline bool TryLock()
EXCLUSIVE_TRYLOCK_FUNCTION
(true) {
thread_annotations.h
121
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(x) \
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock.h
84
inline bool TryLock()
EXCLUSIVE_TRYLOCK_FUNCTION
(true) {
thread_annotations.h
121
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(x) \
/external/clang/test/Sema/
warn-thread-safety-analysis.c
15
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(...) __attribute__ ((
exclusive_trylock_function
(__VA_ARGS__)))
/external/clang/test/PCH/
thread-safety-attrs.cpp
21
#define
EXCLUSIVE_TRYLOCK_FUNCTION
(...) __attribute__ ((
exclusive_trylock_function
(__VA_ARGS__)))
38
bool TryLock() __attribute__((
exclusive_trylock_function
(true)));
Completed in 36 milliseconds