HomeSort by relevance Sort by last modified time
    Searched defs:UNLOCK_FUNCTION (Results 1 - 22 of 22) sorted by null

  /art/runtime/native/
scoped_fast_native_object_access.h 34 ALWAYS_INLINE ~ScopedFastNativeObjectAccess() UNLOCK_FUNCTION(Locks::mutator_lock_) {}
  /external/libchrome/base/
thread_annotations_unittest.cc 14 void Release() UNLOCK_FUNCTION() {}
22 ~AutoLock() UNLOCK_FUNCTION() { lock_.Release(); }
thread_annotations.h 133 // acquired, and the destructor should use `UNLOCK_FUNCTION()` with no
152 // UNLOCK_FUNCTION()
156 #define UNLOCK_FUNCTION(...) \
157 THREAD_ANNOTATION_ATTRIBUTE__(unlock_function(__VA_ARGS__))
  /external/webrtc/webrtc/system_wrappers/include/
critical_section_wrapper.h 33 virtual void Leave() UNLOCK_FUNCTION() = 0;
46 ~CriticalSectionScoped() UNLOCK_FUNCTION() { ptr_crit_sec_->Leave(); }
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() {
  /external/webrtc/webrtc/base/
sharedexclusivelock.h 29 void UnlockExclusive() UNLOCK_FUNCTION();
49 ~SharedScope() UNLOCK_FUNCTION() { lock_->UnlockShared(); }
65 ~ExclusiveScope() UNLOCK_FUNCTION() { lock_->UnlockExclusive(); }
thread_annotations.h 92 #define UNLOCK_FUNCTION(...) \
93 THREAD_ANNOTATION_ATTRIBUTE__(unlock_function(__VA_ARGS__))
criticalsection.cc 74 void CriticalSection::Leave() UNLOCK_FUNCTION() {
signalthread.h 125 ~EnterExit() UNLOCK_FUNCTION() {
criticalsection_unittest.cc 119 void Unlock() UNLOCK_FUNCTION() {
  /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);
  /external/tensorflow/tensorflow/core/platform/default/
mutex.h 47 void unlock() UNLOCK_FUNCTION();
51 void unlock_shared() UNLOCK_FUNCTION();
84 ~mutex_lock() UNLOCK_FUNCTION() {
123 ~tf_shared_lock() UNLOCK_FUNCTION() {
thread_annotations.h 110 // acquired, and the destructor should use UNLOCK_FUNCTION with no arguments;
125 #define UNLOCK_FUNCTION(...) \
126 THREAD_ANNOTATION_ATTRIBUTE__(unlock_function(__VA_ARGS__))
  /external/clang/test/SemaCXX/
warn-thread-safety-negative.cpp 20 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
34 void Unlock() __attribute__((unlock_function));
116 EXCLUSIVE_LOCKS_REQUIRED(F->mutex()) UNLOCK_FUNCTION(F->mutex()) {}
warn-thread-safety-verbose.cpp 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
31 void Unlock() __attribute__((unlock_function));
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));
50 ~MutexLock() UNLOCK_FUNCTION();
57 ~ReaderMutexLock() UNLOCK_FUNCTION();
63 ~ReleasableMutexLock() UNLOCK_FUNCTION();
65 void Release() UNLOCK_FUNCTION();
72 ~DoubleMutexLock() __attribute__((unlock_function));
78 void endNoWarnOnReads() UNLOCK_FUNCTION("*");
80 void endNoWarnOnWrites() UNLOCK_FUNCTION("*");
    [all...]
  /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/tensorflow/tensorflow/core/lib/db/
sqlite.h 395 ~SqliteLock() UNLOCK_FUNCTION() {
422 ~SqliteTransaction() UNLOCK_FUNCTION();
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_device_alsa_linux.h 172 void UnLock() UNLOCK_FUNCTION(_critSect) { _critSect.Leave(); };
audio_device_pulse_linux.h 223 void UnLock() UNLOCK_FUNCTION(_critSect) {
  /art/runtime/base/
mutex.h 404 void TransitionFromRunnableToSuspended(Thread* self) UNLOCK_FUNCTION() ALWAYS_INLINE;
499 ~WriterMutexLock() UNLOCK_FUNCTION() {

Completed in 530 milliseconds