Home
last modified time | relevance | path

Searched refs:UNLOCK_FUNCTION (Results 1 – 21 of 21) sorted by relevance

/external/clang/test/SemaCXX/
Dwarn-thread-safety-parsing.cpp17 #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 …]
Dwarn-thread-safety-analysis.cpp20 #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 …]
Dwarn-thread-safety-negative.cpp20 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro
116 EXCLUSIVE_LOCKS_REQUIRED(F->mutex()) UNLOCK_FUNCTION(F->mutex()) {} in Function()
Dwarn-thread-safety-verbose.cpp17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro
/external/webrtc/webrtc/system_wrappers/include/
Drw_lock_wrapper.h28 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
Dcritical_section_wrapper.h33 virtual void Leave() UNLOCK_FUNCTION() = 0;
46 ~CriticalSectionScoped() UNLOCK_FUNCTION() { ptr_crit_sec_->Leave(); } in UNLOCK_FUNCTION() function
/external/webrtc/webrtc/base/
Dcriticalsection.h51 void Leave() UNLOCK_FUNCTION();
72 ~CritScope() UNLOCK_FUNCTION();
107 void Unlock() UNLOCK_FUNCTION();
121 ~GlobalLockScope() UNLOCK_FUNCTION();
Dsharedexclusivelock.h29 void UnlockExclusive() UNLOCK_FUNCTION();
49 ~SharedScope() UNLOCK_FUNCTION() { lock_->UnlockShared(); } in UNLOCK_FUNCTION() function
65 ~ExclusiveScope() UNLOCK_FUNCTION() { lock_->UnlockExclusive(); } in UNLOCK_FUNCTION() function
Dthread_annotations.h92 #define UNLOCK_FUNCTION(...) \ macro
Dsignalthread.h125 ~EnterExit() UNLOCK_FUNCTION() { in UNLOCK_FUNCTION() function
Dcriticalsection.cc74 void CriticalSection::Leave() UNLOCK_FUNCTION() { in Leave()
Dcriticalsection_unittest.cc119 void Unlock() UNLOCK_FUNCTION() { in Unlock()
/external/clang/test/PCH/
Dthread-safety-attrs.cpp23 #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/tensorflow/tensorflow/core/platform/default/
Dmutex.h50 void unlock() UNLOCK_FUNCTION() { nsync::nsync_mu_unlock(&mu_); } in unlock()
56 void unlock_shared() UNLOCK_FUNCTION() { nsync::nsync_mu_runlock(&mu_); } in unlock_shared()
84 ~mutex_lock() UNLOCK_FUNCTION() { in UNLOCK_FUNCTION() function
122 ~tf_shared_lock() UNLOCK_FUNCTION() { in UNLOCK_FUNCTION() function
Dthread_annotations.h125 #define UNLOCK_FUNCTION(...) \ macro
/external/clang/test/Sema/
Dwarn-thread-safety-analysis.c17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__))) macro
37 void mutex_unlock(struct Mutex *mu) UNLOCK_FUNCTION(mu);
/external/tensorflow/tensorflow/core/lib/db/
Dsqlite.h395 ~SqliteLock() UNLOCK_FUNCTION() { in UNLOCK_FUNCTION() function
422 ~SqliteTransaction() UNLOCK_FUNCTION();
/external/webrtc/webrtc/modules/video_render/mac/
Dvideo_render_nsopengl.h124 void UnlockAGLCntx() UNLOCK_FUNCTION(_nsglContextCritSec);
/external/webrtc/webrtc/modules/audio_device/linux/
Daudio_device_alsa_linux.h172 void UnLock() UNLOCK_FUNCTION(_critSect) { _critSect.Leave(); }; in UnLock()
Daudio_device_pulse_linux.h223 void UnLock() UNLOCK_FUNCTION(_critSect) { in UnLock()
/external/clang/docs/
DThreadSafetyAnalysis.rst216 ``UNLOCK_FUNCTION``
920 #define UNLOCK_FUNCTION(...) \