/external/clang/test/SemaCXX/ |
D | warn-thread-safety-parsing.cpp | 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro 31 void Unlock() UNLOCK_FUNCTION(); 863 void uf_function() UNLOCK_FUNCTION(); 865 void uf_function_args() UNLOCK_FUNCTION(mu1, mu2); 867 int uf_testfn(int y) UNLOCK_FUNCTION(); 870 int x UNLOCK_FUNCTION() = y; // \ in uf_testfn() 875 int uf_test_var UNLOCK_FUNCTION(); // \ 880 int test_field UNLOCK_FUNCTION(); // \ 882 void test_method() UNLOCK_FUNCTION(); 889 void uf_fun_params(int lvar UNLOCK_FUNCTION()); // \ [all …]
|
D | warn-thread-safety-analysis.cpp | 20 #define UNLOCK_FUNCTION(...) __attribute__((unlock_function(__VA_ARGS__))) macro 50 ~MutexLock() UNLOCK_FUNCTION(); 57 ~ReaderMutexLock() UNLOCK_FUNCTION(); 63 ~ReleasableMutexLock() UNLOCK_FUNCTION(); 65 void Release() UNLOCK_FUNCTION(); 78 void endNoWarnOnReads() UNLOCK_FUNCTION("*"); 80 void endNoWarnOnWrites() UNLOCK_FUNCTION("*"); 1289 void MyUnlock() UNLOCK_FUNCTION(mu1_); 2163 void unlock() UNLOCK_FUNCTION(); 2190 void unlock() UNLOCK_FUNCTION() { mu_.Unlock(); } in unlock() [all …]
|
D | warn-thread-safety-negative.cpp | 20 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro 116 EXCLUSIVE_LOCKS_REQUIRED(F->mutex()) UNLOCK_FUNCTION(F->mutex()) {} in Function()
|
D | warn-thread-safety-verbose.cpp | 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | rw_lock_wrapper.h | 28 virtual void ReleaseLockExclusive() UNLOCK_FUNCTION() = 0; 31 virtual void ReleaseLockShared() UNLOCK_FUNCTION() = 0; 43 ~ReadLockScoped() UNLOCK_FUNCTION() { in UNLOCK_FUNCTION() function 58 ~WriteLockScoped() UNLOCK_FUNCTION() { in UNLOCK_FUNCTION() function
|
D | critical_section_wrapper.h | 33 virtual void Leave() UNLOCK_FUNCTION() = 0; 46 ~CriticalSectionScoped() UNLOCK_FUNCTION() { ptr_crit_sec_->Leave(); } in UNLOCK_FUNCTION() function
|
/external/webrtc/webrtc/base/ |
D | criticalsection.h | 51 void Leave() UNLOCK_FUNCTION(); 72 ~CritScope() UNLOCK_FUNCTION(); 107 void Unlock() UNLOCK_FUNCTION(); 121 ~GlobalLockScope() UNLOCK_FUNCTION();
|
D | sharedexclusivelock.h | 29 void UnlockExclusive() UNLOCK_FUNCTION(); 49 ~SharedScope() UNLOCK_FUNCTION() { lock_->UnlockShared(); } in UNLOCK_FUNCTION() function 65 ~ExclusiveScope() UNLOCK_FUNCTION() { lock_->UnlockExclusive(); } in UNLOCK_FUNCTION() function
|
D | thread_annotations.h | 92 #define UNLOCK_FUNCTION(...) \ macro
|
D | signalthread.h | 125 ~EnterExit() UNLOCK_FUNCTION() { in UNLOCK_FUNCTION() function
|
D | criticalsection.cc | 74 void CriticalSection::Leave() UNLOCK_FUNCTION() { in Leave()
|
D | criticalsection_unittest.cc | 119 void Unlock() UNLOCK_FUNCTION() { in Unlock()
|
/external/clang/test/PCH/ |
D | thread-safety-attrs.cpp | 23 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro 58 ~ReleasableMutexLock() UNLOCK_FUNCTION(); 60 void Release() UNLOCK_FUNCTION(); 67 void endNoWarnOnReads() UNLOCK_FUNCTION("*"); 69 void endNoWarnOnWrites() UNLOCK_FUNCTION("*");
|
/external/clang/test/Sema/ |
D | warn-thread-safety-analysis.c | 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro 37 void mutex_unlock(struct Mutex *mu) UNLOCK_FUNCTION(mu);
|
/external/webrtc/webrtc/modules/video_render/mac/ |
D | video_render_nsopengl.h | 124 void UnlockAGLCntx() UNLOCK_FUNCTION(_nsglContextCritSec);
|
/external/webrtc/webrtc/modules/audio_device/linux/ |
D | audio_device_alsa_linux.h | 172 void UnLock() UNLOCK_FUNCTION(_critSect) { _critSect.Leave(); }; in UnLock()
|
D | audio_device_pulse_linux.h | 223 void UnLock() UNLOCK_FUNCTION(_critSect) { in UnLock()
|
/external/clang/docs/ |
D | ThreadSafetyAnalysis.rst | 216 ``UNLOCK_FUNCTION`` 920 #define UNLOCK_FUNCTION(...) \
|