HomeSort by relevance Sort by last modified time
    Searched refs:EXCLUSIVE_LOCK_FUNCTION (Results 1 - 24 of 24) sorted by null

  /external/webrtc/webrtc/system_wrappers/include/
critical_section_wrapper.h 30 virtual void Enter() EXCLUSIVE_LOCK_FUNCTION() = 0;
41 EXCLUSIVE_LOCK_FUNCTION(critsec)
rw_lock_wrapper.h 27 virtual void AcquireLockExclusive() EXCLUSIVE_LOCK_FUNCTION() = 0;
53 WriteLockScoped(RWLockWrapper& rw_lock) EXCLUSIVE_LOCK_FUNCTION(rw_lock)
  /external/webrtc/webrtc/base/
criticalsection.h 49 void Enter() EXCLUSIVE_LOCK_FUNCTION();
71 explicit CritScope(CriticalSection* cs) EXCLUSIVE_LOCK_FUNCTION(cs);
105 void Lock() EXCLUSIVE_LOCK_FUNCTION();
120 explicit GlobalLockScope(GlobalLockPod* lock) EXCLUSIVE_LOCK_FUNCTION(lock);
sharedexclusivelock.h 28 void LockExclusive() EXCLUSIVE_LOCK_FUNCTION();
60 EXCLUSIVE_LOCK_FUNCTION(lock)
signalthread.h 117 explicit EnterExit(SignalThread* t) EXCLUSIVE_LOCK_FUNCTION(t->cs_)
thread_annotations.h 80 #define EXCLUSIVE_LOCK_FUNCTION(...) \
81 THREAD_ANNOTATION_ATTRIBUTE__(exclusive_lock_function(__VA_ARGS__))
criticalsection.cc 39 void CriticalSection::Enter() EXCLUSIVE_LOCK_FUNCTION() {
criticalsection_unittest.cc 116 void Lock() EXCLUSIVE_LOCK_FUNCTION() {
  /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);
566 #if !__has_attribute(exclusive_lock_function)
567 #error "Should support exclusive_lock_function attribute"
572 void elf_function() EXCLUSIVE_LOCK_FUNCTION();
574 void elf_function_args() EXCLUSIVE_LOCK_FUNCTION(mu1, mu2);
576 int elf_testfn(int y) EXCLUSIVE_LOCK_FUNCTION();
    [all...]
warn-thread-safety-verbose.cpp 11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
29 void Lock() __attribute__((exclusive_lock_function));
34 void LockWhen(const int &cond) __attribute__((exclusive_lock_function));
warn-thread-safety-negative.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));
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));
48 MutexLock(Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu);
62 ReleasableMutexLock(Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu);
71 __attribute__((exclusive_lock_function(mu1, mu2)));
79 void beginNoWarnOnWrites() EXCLUSIVE_LOCK_FUNCTION("*");
153 void MyLock() __attribute__((exclusive_lock_function(mu)));
366 void globalLock() __attribute__((exclusive_lock_function(aa_mu)))
    [all...]
  /system/core/base/include/android-base/
thread_annotations.h 83 #define EXCLUSIVE_LOCK_FUNCTION(...) \
84 THREAD_ANNOTATION_ATTRIBUTE__(exclusive_lock_function(__VA_ARGS__))
  /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/
thread_list.h 71 EXCLUSIVE_LOCK_FUNCTION(Locks::mutator_lock_)
236 EXCLUSIVE_LOCK_FUNCTION(Locks::mutator_lock_)
monitor.h 66 EXCLUSIVE_LOCK_FUNCTION(obj)
monitor.cc     [all...]
  /art/runtime/gc/collector/
garbage_collector.h 130 EXCLUSIVE_LOCK_FUNCTION(Locks::mutator_lock_);
  /external/webrtc/webrtc/modules/video_render/mac/
video_render_nsopengl.h 123 void LockAGLCntx() EXCLUSIVE_LOCK_FUNCTION(_nsglContextCritSec);
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_device_alsa_linux.h 171 void Lock() EXCLUSIVE_LOCK_FUNCTION(_critSect) { _critSect.Enter(); };
audio_device_pulse_linux.h 220 void Lock() EXCLUSIVE_LOCK_FUNCTION(_critSect) {
  /art/runtime/base/
mutex.h 542 WriterMutexLock(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) :
  /art/runtime/mirror/
object.h 164 EXCLUSIVE_LOCK_FUNCTION()
168 EXCLUSIVE_LOCK_FUNCTION()
    [all...]

Completed in 213 milliseconds