/external/clang/test/PCH/ |
D | thread-safety-attrs.cpp | 37 void Unlock() __attribute__((unlock_function)); 120 sls_mw.mu.Unlock(); in sls_fun_0() 126 sls_mu.Unlock(); in sls_fun_2() 132 sls_mu.Unlock(); in sls_fun_3() 138 sls_mu2.Unlock(); in sls_fun_4() 144 sls_mu.Unlock(); in sls_fun_5() 150 sls_mu.Unlock(); in sls_fun_6() 156 sls_mu2.Unlock(); in sls_fun_7() 157 sls_mu.Unlock(); in sls_fun_7() 163 sls_mu.Unlock(); in sls_fun_8() [all …]
|
/external/clang/test/SemaCXX/ |
D | warn-thread-safety-analysis.cpp | 34 void Unlock() __attribute__((unlock_function)); 161 sls_mw.mu.Unlock(); in sls_fun_0() 167 sls_mu.Unlock(); in sls_fun_2() 173 sls_mu.Unlock(); in sls_fun_3() 179 sls_mu2.Unlock(); in sls_fun_4() 185 sls_mu.Unlock(); in sls_fun_5() 191 sls_mu.Unlock(); in sls_fun_6() 197 sls_mu2.Unlock(); in sls_fun_7() 198 sls_mu.Unlock(); in sls_fun_7() 204 sls_mu.Unlock(); in sls_fun_8() [all …]
|
D | warn-thread-safety-negative.cpp | 34 void Unlock() __attribute__((unlock_function)); 57 mu.Unlock(); in baz() 71 mu.Unlock(); in foo() 81 mu.Unlock(); in baz() 92 mu.Unlock(); in test2() 99 mu.Unlock(); in test3()
|
D | warn-thread-safety-verbose.cpp | 31 void Unlock() __attribute__((unlock_function)); 71 mu.Unlock(); in test5() 77 mu.Unlock(); in test6() 83 mu.Unlock(); in test7()
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_mutex.cc | 28 t.Unlock(m); in TEST() 31 t.Unlock(m); in TEST() 35 t.Unlock(m); in TEST() 46 t.Unlock(m); in TEST() 49 t.Unlock(m); in TEST() 53 t.Unlock(m); in TEST() 64 t.Unlock(m); in TEST() 67 t.Unlock(m); in TEST() 71 t.Unlock(m); in TEST() 81 t.Unlock(m); in TEST() [all …]
|
/external/toolchain-utils/ |
D | lock_machine_test.py | 32 self.assertFalse(mach.Unlock()) 35 self.assertFalse(mach.Unlock()) 41 self.assertTrue(mach.Unlock(exclusive=True)) 46 self.assertTrue(mach.Unlock(exclusive=True)) 53 self.assertTrue(mach.Unlock(exclusive=False)) 55 self.assertTrue(mach.Unlock(exclusive=True)) 61 self.assertTrue(mach.Unlock(exclusive=False)) 63 self.assertTrue(mach.Unlock(exclusive=True)) 71 self.assertTrue(mach.Unlock(exclusive=True)) 78 self.assertTrue(mach.Unlock(exclusive=True)) [all …]
|
/external/syzkaller/vendor/google.golang.org/grpc/ |
D | clientconn.go | 647 defer csm.mu.Unlock() 664 defer csm.mu.Unlock() 670 defer csm.mu.Unlock() 745 cc.mu.Unlock() 754 defer cc.mu.Unlock() 849 cc.mu.Unlock() 855 cc.mu.Unlock() 871 cc.mu.Unlock() 878 cc.mu.Unlock() 887 cc.mu.Unlock() [all …]
|
D | picker_wrapper.go | 64 bp.connErrMu.Unlock() 70 bp.connErrMu.Unlock() 99 bp.mu.Unlock() 106 bp.mu.Unlock() 112 acw.mu.Unlock() 163 bp.mu.Unlock() 174 bp.mu.Unlock() 185 bp.mu.Unlock() 228 defer bp.mu.Unlock() 262 ss.mu.Unlock() [all …]
|
D | balancer.go | 172 defer rr.mu.Unlock() 222 defer rr.mu.Unlock() 253 defer rr.mu.Unlock() 279 defer rr.mu.Unlock() 293 rr.mu.Unlock() 309 rr.mu.Unlock() 320 rr.mu.Unlock() 327 rr.mu.Unlock() 337 rr.mu.Unlock() 346 rr.mu.Unlock() [all …]
|
D | balancer_conn_wrappers.go | 53 defer b.mu.Unlock() 66 defer b.mu.Unlock() 149 ccb.mu.Unlock() 196 defer ccb.mu.Unlock() 207 acbw.ac.mu.Unlock() 218 defer ccb.mu.Unlock() 228 defer ccb.mu.Unlock() 253 defer acbw.mu.Unlock() 267 acbw.ac.mu.Unlock() 283 ac.mu.Unlock() [all …]
|
D | balancer_v1_wrapper.go | 118 bw.mu.Unlock() 135 bw.mu.Unlock() 142 bw.mu.Unlock() 173 bw.mu.Unlock() 179 bw.mu.Unlock() 209 bw.mu.Unlock() 221 bw.mu.Unlock() 234 defer bw.mu.Unlock() 264 defer bw.mu.Unlock() 276 defer bw.mu.Unlock() [all …]
|
/external/sfntly/cpp/src/test/ |
D | lock_test.cc | 35 lock_->Unlock(); in ThreadMain() 41 lock_->Unlock(); in ThreadMain() 47 lock_->Unlock(); in ThreadMain() 72 lock.Unlock(); in BasicLockTest() 78 lock.Unlock(); in BasicLockTest() 84 lock.Unlock(); in BasicLockTest() 91 lock.Unlock(); in BasicLockTest() 111 lock_->Unlock(); in ThreadMain() 141 lock.Unlock(); in TryLockTest() 157 lock.Unlock(); in TryLockTest() [all …]
|
/external/gflags/src/ |
D | mutex.h | 175 inline void Unlock(); // Release a lock acquired via Lock() 186 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock() in WriterUnlock() 223 void Mutex::Unlock() { assert(mutex_++ == -1); } in Unlock() function 242 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); } in Unlock() function 248 void Mutex::ReaderUnlock() { Unlock(); } in ReaderUnlock() 266 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock); } in Unlock() function 291 void Mutex::Unlock() { SAFE_PTHREAD(pthread_mutex_unlock); } in Unlock() function 297 void Mutex::ReaderUnlock() { Unlock(); } in ReaderUnlock() 309 ~MutexLock() { mu_->Unlock(); } in ~MutexLock()
|
/external/webrtc/webrtc/sound/ |
D | pulseaudiosoundsystem.cc | 165 Unlock(); in LatencyUsecs() 203 void Unlock() { in Unlock() function in rtc::PulseAudioStream 204 pulse()->Unlock(); in Unlock() 290 Unlock(); in GetVolume() 357 Unlock(); in SetVolume() 369 Unlock(); in Close() 393 void Unlock() { in Unlock() function in rtc::PulseAudioInputStream 394 stream_.Unlock(); in Unlock() 443 Unlock(); in OnStart() 478 Unlock(); in OnHaveWork() [all …]
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | client_conn_pool.go | 68 p.mu.Unlock() 73 p.mu.Unlock() 77 p.mu.Unlock() 116 c.p.mu.Unlock() 131 p.mu.Unlock() 147 p.mu.Unlock() 173 p.mu.Unlock() 180 p.mu.Unlock() 202 defer p.mu.Unlock() 220 defer p.mu.Unlock()
|
D | pipe.go | 34 defer p.mu.Unlock() 45 defer p.mu.Unlock() 74 defer p.mu.Unlock() 109 defer p.mu.Unlock() 143 defer p.mu.Unlock() 154 defer p.mu.Unlock()
|
D | transport.go | 256 cc.mu.Unlock() 280 defer cc.mu.Unlock() 292 cc.mu.Unlock() 602 defer cc.mu.Unlock() 629 defer cc.mu.Unlock() 654 cc.mu.Unlock() 660 cc.mu.Unlock() 683 cc.mu.Unlock() 687 cc.mu.Unlock() 693 defer cc.mu.Unlock() [all …]
|
/external/syzkaller/vendor/google.golang.org/grpc/transport/ |
D | flowcontrol.go | 167 f.mu.Unlock() 196 f.mu.Unlock() 199 f.mu.Unlock() 210 f.mu.Unlock() 213 f.mu.Unlock() 222 f.mu.Unlock() 237 f.mu.Unlock() 240 f.mu.Unlock()
|
D | http2_server.go | 361 t.mu.Unlock() 365 t.mu.Unlock() 375 t.mu.Unlock() 385 t.mu.Unlock() 390 t.czmu.Unlock() 441 t.mu.Unlock() 488 defer t.mu.Unlock() 531 t.mu.Unlock() 665 t.mu.Unlock() 720 s.hdrMu.Unlock() [all …]
|
D | http2_client.go | 530 t.mu.Unlock() 544 t.czmu.Unlock() 560 t.mu.Unlock() 669 t.mu.Unlock() 677 t.czmu.Unlock() 703 t.mu.Unlock() 709 t.mu.Unlock() 738 t.mu.Unlock() 743 t.mu.Unlock() 786 defer t.mu.Unlock() [all …]
|
/external/drm_hwcomposer/tests/ |
D | worker_test.cpp | 26 Unlock(); in Routine() 34 Unlock(); in Routine() 44 Unlock(); in Control() 86 worker.Unlock(); in TEST_F() 95 worker.Unlock(); in TEST_F()
|
/external/syzkaller/vendor/golang.org/x/net/context/ |
D | pre_go17.go | 94 p.mu.Unlock() 134 p.mu.Unlock() 162 defer c.mu.Unlock() 178 c.mu.Unlock() 188 c.mu.Unlock() 220 defer c.mu.Unlock() 258 c.mu.Unlock()
|
/external/mdnsresponder/mDNSWindows/DLLX/ |
D | _IDNSSDEvents_CP.h | 23 pThis->Unlock(); in Fire_DomainFound() 52 pThis->Unlock(); in Fire_DomainLost() 81 pThis->Unlock(); in Fire_ServiceFound() 114 pThis->Unlock(); in Fire_ServiceLost() 147 pThis->Unlock(); in Fire_ServiceResolved() 181 pThis->Unlock(); in Fire_ServiceRegistered() 212 pThis->Unlock(); in Fire_QueryRecordAnswered() 246 pThis->Unlock(); in Fire_RecordRegistered() 271 pThis->Unlock(); in Fire_AddressFound() 305 pThis->Unlock(); in Fire_MappingCreated() [all …]
|
/external/compiler-rt/test/tsan/ |
D | mutex_annotations.cc | 25 void Unlock() { in Unlock() function in Mutex 38 m.Unlock(); in main() 42 m.Unlock(); in main()
|
/external/syzkaller/vendor/google.golang.org/grpc/internal/grpcrand/ |
D | grpcrand.go | 38 mu.Unlock() 46 mu.Unlock() 54 mu.Unlock()
|