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

  /external/compiler-rt/lib/asan/
asan_lock.h 27 class AsanLock {
29 explicit AsanLock(LinkerInitialized);
38 typedef GenericScopedLock<AsanLock> ScopedLock;
asan_linux.cc 84 AsanLock::AsanLock(LinkerInitialized) {
91 void AsanLock::Lock() {
98 void AsanLock::Unlock() {
asan_win.cc 20 #include <new> // FIXME: temporarily needed for placement new in AsanLock.
31 static AsanLock dbghelp_lock(LINKER_INITIALIZED);
99 // ---------------------- AsanLock ---------------- {{{1
105 AsanLock::AsanLock(LinkerInitialized li) {
106 // FIXME: see comments in AsanLock::Lock() for the details.
114 void AsanLock::Lock() {
116 // FIXME: hm, global AsanLock objects are not initialized?!?
118 new(this) AsanLock((LinkerInitialized)(LINKER_INITIALIZED + 1));
129 void AsanLock::Unlock()
    [all...]
asan_mac.cc 136 AsanLock::AsanLock(LinkerInitialized) {
140 void AsanLock::Lock() {
149 void AsanLock::Unlock() {

Completed in 32 milliseconds