Searched defs:UNLOCK_FUNCTION (Results 1 - 3 of 3) sorted by relevance

/art/runtime/base/
H A Dmacros.h265 #define UNLOCK_FUNCTION(...) THREAD_ANNOTATION_ATTRIBUTE__(unlock_function(__VA_ARGS__)) macro
271 #define UNLOCK_FUNCTION(...) THREAD_ANNOTATION_ATTRIBUTE__(unlock(__VA_ARGS__)) macro
H A Dmutex.h222 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
223 void Unlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); } function in class:art::Mutex
302 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
303 void WriterUnlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); } function in class:art::ReaderWriterMutex
320 void SharedUnlock(Thread* self) UNLOCK_FUNCTION() ALWAYS_INLINE;
321 void ReaderUnlock(Thread* self) UNLOCK_FUNCTION() { SharedUnlock(self); } function in class:art::ReaderWriterMutex
434 ~MutexLock() UNLOCK_FUNCTION() { function in class:art::MutexLock
455 ~ReaderMutexLock() UNLOCK_FUNCTION() { function in class:art::ReaderMutexLock
477 ~WriterMutexLock() UNLOCK_FUNCTION() { function in class:art::WriterMutexLock
/art/compiler/
H A Doat_writer.cc657 ~WriteCodeMethodVisitor() UNLOCK_FUNCTION(Locks::mutator_lock_) { function in class:art::OatWriter::InitCodeMethodVisitor::OatWriter::WriteCodeMethodVisitor

Completed in 265 milliseconds