Home
last modified time | relevance | path

Searched refs:ABSL_UNLOCK_FUNCTION (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex.h166 void Unlock() ABSL_UNLOCK_FUNCTION();
228 void ReaderUnlock() ABSL_UNLOCK_FUNCTION();
255 void WriterUnlock() ABSL_UNLOCK_FUNCTION() { this->Unlock(); } in WriterUnlock()
543 ~MutexLock() ABSL_UNLOCK_FUNCTION() { this->mu_->Unlock(); } in ABSL_UNLOCK_FUNCTION() function
570 ~ReaderMutexLock() ABSL_UNLOCK_FUNCTION() { this->mu_->ReaderUnlock(); } in ABSL_UNLOCK_FUNCTION() function
598 ~WriterMutexLock() ABSL_UNLOCK_FUNCTION() { this->mu_->WriterUnlock(); } in ABSL_UNLOCK_FUNCTION() function
891 ~MutexLockMaybe() ABSL_UNLOCK_FUNCTION() { in ABSL_UNLOCK_FUNCTION() function
920 ~ReleasableMutexLock() ABSL_UNLOCK_FUNCTION() { in ABSL_UNLOCK_FUNCTION() function
924 void Release() ABSL_UNLOCK_FUNCTION();
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
Dthread_annotations.h224 #define ABSL_UNLOCK_FUNCTION(...) __attribute__((unlock_function(__VA_ARGS__))) macro
226 #define ABSL_UNLOCK_FUNCTION(...) macro
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dspinlock.h96 inline void Unlock() ABSL_UNLOCK_FUNCTION() { in Unlock()
192 inline ~SpinLockHolder() ABSL_UNLOCK_FUNCTION() { lock_->Unlock(); } in ABSL_UNLOCK_FUNCTION() function
Dlow_level_alloc.cc295 void Leave() ABSL_UNLOCK_FUNCTION() { in Leave()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcordz_update_scope.h49 ~CordzUpdateScope() ABSL_UNLOCK_FUNCTION() { in ABSL_UNLOCK_FUNCTION() function
Dcordz_info.h137 void Unlock() ABSL_UNLOCK_FUNCTION(mutex_);
Dcordz_info.cc413 void CordzInfo::Unlock() ABSL_UNLOCK_FUNCTION(mutex_) { in Unlock()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
Dreflection.cc56 void Unlock() ABSL_UNLOCK_FUNCTION(lock_) { lock_.Unlock(); } in Unlock()