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

/external/chromium_org/third_party/leveldatabase/src/port/
H A Dthread_annotations.h51 #ifndef UNLOCK_FUNCTION
52 #define UNLOCK_FUNCTION(...) macro
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Drw_lock_wrapper.h28 virtual void ReleaseLockExclusive() UNLOCK_FUNCTION() = 0;
31 virtual void ReleaseLockShared() UNLOCK_FUNCTION() = 0;
43 ~ReadLockScoped() UNLOCK_FUNCTION() { function in class:webrtc::ReadLockScoped
58 ~WriteLockScoped() UNLOCK_FUNCTION() { function in class:webrtc::WriteLockScoped
H A Dcritical_section_wrapper.h33 virtual void Leave() UNLOCK_FUNCTION() = 0;
46 ~CriticalSectionScoped() UNLOCK_FUNCTION() { ptr_crit_sec_->Leave(); } function in class:webrtc::CriticalSectionScoped
/external/chromium_org/third_party/webrtc/base/
H A Dsharedexclusivelock.h29 void UnlockExclusive() UNLOCK_FUNCTION();
49 ~SharedScope() UNLOCK_FUNCTION() { lock_->UnlockShared(); } function in class:rtc::SharedScope
65 ~ExclusiveScope() UNLOCK_FUNCTION() { lock_->UnlockExclusive(); } function in class:rtc::ExclusiveScope
H A Dcriticalsection.h59 void Leave() UNLOCK_FUNCTION() { function in class:rtc::CriticalSection
99 void Leave() UNLOCK_FUNCTION() { function in class:rtc::CriticalSection
121 ~CritScope() UNLOCK_FUNCTION() { function in class:rtc::CritScope
H A Dthread_annotations.h92 #define UNLOCK_FUNCTION(...) \ macro
H A Dsignalthread.h128 ~EnterExit() UNLOCK_FUNCTION() { function in class:rtc::SignalThread::EnterExit
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_manager_base.h33 void ReleaseWriteLockManager() UNLOCK_FUNCTION();
39 void ReleaseLockManager() const UNLOCK_FUNCTION();
48 ~ViEManagerWriteScoped() UNLOCK_FUNCTION();
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dmutexlock.h29 ~MutexLock() UNLOCK_FUNCTION() { this->mu_->Unlock(); } function in class:leveldb::MutexLock
/external/clang/test/SemaCXX/
H A 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; // \
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()); // \
1291 void unlock() UNLOCK_FUNCTION() { } function in class:EmptyArgListsTest
[all...]
H A Dwarn-thread-safety-analysis.cpp20 #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("*");
1247 void MyUnlock() UNLOCK_FUNCTION(mu1_);
2115 void unlock() UNLOCK_FUNCTION();
2142 void unlock() UNLOCK_FUNCTION() { mu_.Unlock(); } function in class:SelfLockingTest::MyLock2
2584 void release() UNLOCK_FUNCTION();
2675 void Unlock() UNLOCK_FUNCTION(mu
2860 void Foo::unlock() UNLOCK_FUNCTION() { } function in namespace:DuplicateAttributeTest
2884 void Foo::unlock1() UNLOCK_FUNCTION(mu1_) { function in namespace:DuplicateAttributeTest
2888 void Foo::unlock3() UNLOCK_FUNCTION(mu1_, mu2_, mu3_) { function in namespace:DuplicateAttributeTest
2896 UNLOCK_FUNCTION(mu2_, mu3_) { function in namespace:DuplicateAttributeTest
3915 void unlock() UNLOCK_FUNCTION() { mu_.Unlock(); } function in class:LockUnlockFunctionTest::MyLockable
3933 void unlock() UNLOCK_FUNCTION(mu_) { function in class:LockUnlockFunctionTest::Foo
3948 void unlockBad() UNLOCK_FUNCTION(mu_) { // expected-note {{mutex acquired here}} function in class:LockUnlockFunctionTest::Foo
3966 void unlockBad2() UNLOCK_FUNCTION(mu_) { // expected-note {{mutex acquired here}} function in class:LockUnlockFunctionTest::Foo
4015 void test5() UNLOCK_FUNCTION(mu_) { function in class:AssertHeldTest::Foo
[all...]
/external/clang/test/PCH/
H A 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/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dthread_annotations.h127 #define UNLOCK_FUNCTION(x) \ macro
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dthread_annotations.h127 #define UNLOCK_FUNCTION(x) \ macro
/external/clang/test/Sema/
H A 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/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Daudio_record_jni.h116 void UnLock() UNLOCK_FUNCTION(_critSect) { function in class:webrtc::AudioRecordJni
H A Daudio_track_jni.h116 void UnLock() UNLOCK_FUNCTION(_critSect) { function in class:webrtc::AudioTrackJni
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.h118 static void Unlock() UNLOCK_FUNCTION(lock_);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.h106 static void Unlock() UNLOCK_FUNCTION(lock_);
/external/chromium_org/third_party/webrtc/modules/audio_device/linux/
H A Daudio_device_alsa_linux.h177 void UnLock() UNLOCK_FUNCTION(_critSect) { _critSect.Leave(); }; function in class:webrtc::AudioDeviceLinuxALSA
H A Daudio_device_pulse_linux.h228 void UnLock() UNLOCK_FUNCTION(_critSect) { function in class:webrtc::AudioDeviceLinuxPulse

Completed in 1237 milliseconds