OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EXCLUSIVE_LOCK_FUNCTION
(Results
1 - 22
of
22
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h
35
#ifndef
EXCLUSIVE_LOCK_FUNCTION
36
#define
EXCLUSIVE_LOCK_FUNCTION
(...)
/external/chromium_org/third_party/leveldatabase/src/util/
mutexlock.h
25
explicit MutexLock(port::Mutex *mu)
EXCLUSIVE_LOCK_FUNCTION
(mu)
/art/runtime/entrypoints/portable/
portable_lock_entrypoints.cc
23
EXCLUSIVE_LOCK_FUNCTION
(monitor_lock_) {
/art/runtime/entrypoints/quick/
quick_lock_entrypoints.cc
33
EXCLUSIVE_LOCK_FUNCTION
(monitor_lock_) {
/external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp
11
#define
EXCLUSIVE_LOCK_FUNCTION
(...) __attribute__ ((
exclusive_lock_function
(__VA_ARGS__)))
29
void Lock()
EXCLUSIVE_LOCK_FUNCTION
();
78
void needLock()
EXCLUSIVE_LOCK_FUNCTION
(foomu);
82
void needLock()
EXCLUSIVE_LOCK_FUNCTION
(foomu);
564
#if !__has_attribute(
exclusive_lock_function
)
565
#error "Should support
exclusive_lock_function
attribute"
570
void elf_function()
EXCLUSIVE_LOCK_FUNCTION
();
572
void elf_function_args()
EXCLUSIVE_LOCK_FUNCTION
(mu1, mu2);
574
int elf_testfn(int y)
EXCLUSIVE_LOCK_FUNCTION
();
[
all
...]
warn-thread-safety-analysis.cpp
14
#define
EXCLUSIVE_LOCK_FUNCTION
(...) __attribute__ ((
exclusive_lock_function
(__VA_ARGS__)))
32
void Lock() __attribute__((
exclusive_lock_function
));
37
void LockWhen(const int &cond) __attribute__((
exclusive_lock_function
));
45
MutexLock(Mutex *mu) __attribute__((
exclusive_lock_function
(mu)));
51
ReaderMutexLock(Mutex *mu) __attribute__((
exclusive_lock_function
(mu)));
57
ReleasableMutexLock(Mutex *mu)
EXCLUSIVE_LOCK_FUNCTION
(mu);
68
void beginNoWarnOnWrites()
EXCLUSIVE_LOCK_FUNCTION
("*");
110
void MyLock() __attribute__((
exclusive_lock_function
(mu)));
323
void globalLock() __attribute__((
exclusive_lock_function
(aa_mu)))
[
all
...]
/art/runtime/base/
mutex.h
147
void ExclusiveLock(Thread* self)
EXCLUSIVE_LOCK_FUNCTION
();
148
void Lock(Thread* self)
EXCLUSIVE_LOCK_FUNCTION
() { ExclusiveLock(self); }
229
void ExclusiveLock(Thread* self)
EXCLUSIVE_LOCK_FUNCTION
();
230
void WriterLock(Thread* self)
EXCLUSIVE_LOCK_FUNCTION
() { ExclusiveLock(self); }
356
explicit MutexLock(Thread* self, Mutex& mu)
EXCLUSIVE_LOCK_FUNCTION
(mu) : self_(self), mu_(mu) {
376
explicit ReaderMutexLock(Thread* self, ReaderWriterMutex& mu)
EXCLUSIVE_LOCK_FUNCTION
(mu) :
398
explicit WriterMutexLock(Thread* self, ReaderWriterMutex& mu)
EXCLUSIVE_LOCK_FUNCTION
(mu) :
macros.h
163
#define
EXCLUSIVE_LOCK_FUNCTION
(...) __attribute__ ((exclusive_lock(__VA_ARGS__)))
184
#define
EXCLUSIVE_LOCK_FUNCTION
(...)
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock.h
72
inline void Lock() /*
EXCLUSIVE_LOCK_FUNCTION
()*/ {
139
inline explicit SpinLockHolder(SpinLock* l)
EXCLUSIVE_LOCK_FUNCTION
(l)
thread_annotations.h
115
#define
EXCLUSIVE_LOCK_FUNCTION
(x) \
low_level_alloc.cc
218
EXCLUSIVE_LOCK_FUNCTION
(arena->mu)
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock.h
72
inline void Lock() /*
EXCLUSIVE_LOCK_FUNCTION
()*/ {
139
inline explicit SpinLockHolder(SpinLock* l)
EXCLUSIVE_LOCK_FUNCTION
(l)
thread_annotations.h
115
#define
EXCLUSIVE_LOCK_FUNCTION
(x) \
low_level_alloc.cc
218
EXCLUSIVE_LOCK_FUNCTION
(arena->mu)
/external/clang/test/Sema/
warn-thread-safety-analysis.c
11
#define
EXCLUSIVE_LOCK_FUNCTION
(...) __attribute__ ((
exclusive_lock_function
(__VA_ARGS__)))
35
void mutex_exclusive_lock(struct Mutex *mu)
EXCLUSIVE_LOCK_FUNCTION
(mu) {
/external/clang/test/PCH/
thread-safety-attrs.cpp
19
#define
EXCLUSIVE_LOCK_FUNCTION
(...) __attribute__ ((
exclusive_lock_function
(__VA_ARGS__)))
35
void Lock() __attribute__((
exclusive_lock_function
));
40
void LockWhen(const int &cond) __attribute__((
exclusive_lock_function
));
45
MutexLock(Mutex *mu) __attribute__((
exclusive_lock_function
(mu)));
51
ReaderMutexLock(Mutex *mu) __attribute__((
exclusive_lock_function
(mu)));
57
ReleasableMutexLock(Mutex *mu)
EXCLUSIVE_LOCK_FUNCTION
(mu);
68
void beginNoWarnOnWrites()
EXCLUSIVE_LOCK_FUNCTION
("*");
110
void MyLock() __attribute__((
exclusive_lock_function
(mu)));
/art/runtime/
monitor.h
76
EXCLUSIVE_LOCK_FUNCTION
(monitor_lock_)
125
void Lock(Thread* self)
EXCLUSIVE_LOCK_FUNCTION
(monitor_lock_);
thread_list.h
58
EXCLUSIVE_LOCK_FUNCTION
(Locks::mutator_lock_)
jni_internal.cc
[
all
...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h
117
static void Lock()
EXCLUSIVE_LOCK_FUNCTION
(lock_);
/external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.h
105
static void Lock()
EXCLUSIVE_LOCK_FUNCTION
(lock_);
/art/runtime/mirror/
object.h
108
EXCLUSIVE_LOCK_FUNCTION
(monitor_lock_);
Completed in 235 milliseconds