HomeSort by relevance Sort by last modified time
    Searched refs:UNLOCK_FUNCTION (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
rw_lock_wrapper.h 28 virtual void ReleaseLockExclusive() UNLOCK_FUNCTION() = 0;
31 virtual void ReleaseLockShared() UNLOCK_FUNCTION() = 0;
43 ~ReadLockScoped() UNLOCK_FUNCTION() {
58 ~WriteLockScoped() UNLOCK_FUNCTION() {
critical_section_wrapper.h 33 virtual void Leave() UNLOCK_FUNCTION() = 0;
46 ~CriticalSectionScoped() UNLOCK_FUNCTION() { ptr_crit_sec_->Leave(); }
thread_annotations.h 92 #define UNLOCK_FUNCTION(...) \
93 THREAD_ANNOTATION_ATTRIBUTE__(unlock_function(__VA_ARGS__))
  /external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h 51 #ifndef UNLOCK_FUNCTION
52 #define UNLOCK_FUNCTION(...)
  /external/chromium_org/third_party/webrtc/video_engine/
vie_manager_base.h 33 void ReleaseWriteLockManager() UNLOCK_FUNCTION();
39 void ReleaseLockManager() const UNLOCK_FUNCTION();
48 ~ViEManagerWriteScoped() UNLOCK_FUNCTION();
  /external/chromium_org/third_party/leveldatabase/src/util/
mutexlock.h 29 ~MutexLock() UNLOCK_FUNCTION() { this->mu_->Unlock(); }
  /art/runtime/native/
scoped_fast_native_object_access.h 39 ~ScopedFastNativeObjectAccess() UNLOCK_FUNCTION(Locks::mutator_lock_) ALWAYS_INLINE {
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
31 void Unlock() UNLOCK_FUNCTION();
    [all...]
warn-thread-safety-analysis.cpp 20 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
34 void Unlock() __attribute__((unlock_function));
46 ~MutexLock() __attribute__((unlock_function));
52 ~ReaderMutexLock() __attribute__((unlock_function));
58 ~ReleasableMutexLock() UNLOCK_FUNCTION();
60 void Release() UNLOCK_FUNCTION();
67 void endNoWarnOnReads() UNLOCK_FUNCTION("*");
69 void endNoWarnOnWrites() UNLOCK_FUNCTION("*");
325 void globalUnlock() __attribute__((unlock_function(aa_mu)))
    [all...]
  /art/runtime/base/
mutex.h 216 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
217 void Unlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); }
296 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
297 void WriterUnlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); }
314 void SharedUnlock(Thread* self) UNLOCK_FUNCTION() ALWAYS_INLINE;
315 void ReaderUnlock(Thread* self) UNLOCK_FUNCTION() { SharedUnlock(self); }
425 ~MutexLock() UNLOCK_FUNCTION() {
446 ~ReaderMutexLock() UNLOCK_FUNCTION() {
468 ~WriterMutexLock() UNLOCK_FUNCTION() {
macros.h 210 #define UNLOCK_FUNCTION(...) THREAD_ANNOTATION_ATTRIBUTE__(unlock_function(__VA_ARGS__))
216 #define UNLOCK_FUNCTION(...) THREAD_ANNOTATION_ATTRIBUTE__(unlock(__VA_ARGS__))
  /art/runtime/entrypoints/portable/
portable_jni_entrypoints.cc 26 UNLOCK_FUNCTION(Locks::mutator_lock_) {
35 UNLOCK_FUNCTION(Locks::mutator_lock_) NO_THREAD_SAFETY_ANALYSIS {
  /external/clang/test/PCH/
thread-safety-attrs.cpp 23 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
37 void Unlock() __attribute__((unlock_function));
46 ~MutexLock() __attribute__((unlock_function));
52 ~ReaderMutexLock() __attribute__((unlock_function));
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/
thread_annotations.h 127 #define UNLOCK_FUNCTION(x) \
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
thread_annotations.h 127 #define UNLOCK_FUNCTION(x) \
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
37 void mutex_unlock(struct Mutex *mu) UNLOCK_FUNCTION(mu);
  /art/runtime/gc/collector/
garbage_collector.h 113 ~ScopedPause() UNLOCK_FUNCTION();
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
audio_record_jni.h 116 void UnLock() UNLOCK_FUNCTION(_critSect) {
audio_track_jni.h 116 void UnLock() UNLOCK_FUNCTION(_critSect) {
  /art/runtime/
thread_list.h 51 UNLOCK_FUNCTION(Locks::mutator_lock_)
monitor.h 68 UNLOCK_FUNCTION(obj);
scoped_thread_state_change.h 270 ~ScopedObjectAccess() UNLOCK_FUNCTION(Locks::mutator_lock_) ALWAYS_INLINE {
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h 118 static void Unlock() UNLOCK_FUNCTION(lock_);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.h 106 static void Unlock() UNLOCK_FUNCTION(lock_);
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_device_alsa_linux.h 177 void UnLock() UNLOCK_FUNCTION(_critSect) { _critSect.Leave(); };

Completed in 831 milliseconds

1 2