/external/clang/test/Analysis/ |
D | pthreadlock.c | 20 extern int pthread_mutex_unlock(pthread_mutex_t *); 44 pthread_mutex_unlock(&mtx1); // no-warning in ok2() 51 pthread_mutex_unlock(&mtx1); // no-warning in ok3() 53 pthread_mutex_unlock(&mtx1); // no-warning in ok3() 60 pthread_mutex_unlock(&mtx1); // no-warning in ok4() 62 pthread_mutex_unlock(&mtx2); // no-warning in ok4() 69 pthread_mutex_unlock(&mtx1); // no-warning in ok5() 90 pthread_mutex_unlock(&mtx2); // no-warning in ok8() 91 pthread_mutex_unlock(&mtx1); // no-warning in ok8() 97 pthread_mutex_unlock(&mtx1); // no-warning in ok9() [all …]
|
/external/valgrind/main/drd/tests/ |
D | thread_name.stderr.exp | 7 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 16 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 25 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 34 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 43 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 52 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 61 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 70 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 79 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?) 88 at 0x........: pthread_mutex_unlock (drd_pthread_intercepts.c:?)
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
D | pthread_rwlock_destroy.c | 70 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_destroy() 81 result = pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted)); in pthread_rwlock_destroy() 82 result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_destroy() 90 pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) in pthread_rwlock_destroy() 92 pthread_mutex_unlock (&rwl->mtxExclusiveAccess); in pthread_rwlock_destroy() 97 pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))) != 0) in pthread_rwlock_destroy()
|
D | sem_wait.c | 78 (void) pthread_mutex_unlock (&s->lock); in ptw32_sem_wait_cleanup() 132 (void) pthread_mutex_unlock (&s->lock); in sem_wait() 138 (void) pthread_mutex_unlock (&s->lock); in sem_wait() 160 (void) pthread_mutex_unlock (&s->lock); in sem_wait() 170 (void) pthread_mutex_unlock (&s->lock); in sem_wait()
|
D | pthread_rwlock_tryrdlock.c | 86 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_tryrdlock() 94 pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) in pthread_rwlock_tryrdlock() 96 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_tryrdlock() 101 return (pthread_mutex_unlock (&rwl->mtxExclusiveAccess)); in pthread_rwlock_tryrdlock()
|
D | pthread_rwlock_rdlock.c | 86 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_rdlock() 94 pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) in pthread_rwlock_rdlock() 96 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_rdlock() 101 return (pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))); in pthread_rwlock_rdlock()
|
D | ptw32_semwait.c | 86 (void) pthread_mutex_unlock (&s->lock); in ptw32_semwait() 92 (void) pthread_mutex_unlock (&s->lock); in ptw32_semwait() 104 (void) pthread_mutex_unlock (&s->lock); in ptw32_semwait() 114 (void) pthread_mutex_unlock (&s->lock); in ptw32_semwait()
|
D | sem_timedwait.c | 92 (void) pthread_mutex_unlock (&s->lock); in ptw32_sem_timedwait_cleanup() 170 (void) pthread_mutex_unlock (&s->lock); in sem_timedwait() 176 (void) pthread_mutex_unlock (&s->lock); in sem_timedwait() 208 (void) pthread_mutex_unlock (&s->lock); in sem_timedwait() 218 (void) pthread_mutex_unlock (&s->lock); in sem_timedwait()
|
D | pthread_rwlock_timedrdlock.c | 93 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_timedrdlock() 101 pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) in pthread_rwlock_timedrdlock() 103 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_timedrdlock() 108 return (pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))); in pthread_rwlock_timedrdlock()
|
D | pthread_rwlock_trywrlock.c | 84 result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_trywrlock() 99 pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) in pthread_rwlock_trywrlock() 101 (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); in pthread_rwlock_trywrlock() 106 pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))) == 0) in pthread_rwlock_trywrlock()
|
/external/valgrind/main/helgrind/tests/ |
D | hg02_deadlock.c | 11 pthread_mutex_unlock(&m1); in t1() 12 pthread_mutex_unlock(&m2); in t1() 21 pthread_mutex_unlock(&m1); in t2() 22 pthread_mutex_unlock(&m2); in t2() 33 pthread_mutex_unlock(&m1); in main()
|
D | tc15_laog_lockdel.c | 30 r = pthread_mutex_unlock( mx1 ); assert(r==0); in main() 31 r = pthread_mutex_unlock( mx2 ); assert(r==0); in main() 38 r = pthread_mutex_unlock( mx1 ); assert(r==0); in main() 39 r = pthread_mutex_unlock( mx2 ); assert(r==0); in main() 55 r = pthread_mutex_unlock( mx1 ); assert(r==0); in main() 56 r = pthread_mutex_unlock( mx2 ); assert(r==0); in main()
|
D | tc09_bad_unlock.stderr.exp | 9 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...) 28 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...) 40 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...) 48 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...) 56 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...) 93 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...) 105 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...) 113 at 0x........: pthread_mutex_unlock (hg_intercepts.c:...)
|
D | tc09_bad_unlock.c | 11 pthread_mutex_unlock( (pthread_mutex_t*)arg ); /* ERROR */ in child_fn() 25 pthread_mutex_unlock( &mx1 ); in nearly_main() 27 pthread_mutex_unlock( &mx1 ); /* ERROR */ in nearly_main() 41 pthread_mutex_unlock( (pthread_mutex_t*) &bogus[50] ); /* ERROR */ in nearly_main()
|
D | tc13_laog1.c | 20 r = pthread_mutex_unlock( &mx1 ); assert(r==0); in main() 21 r = pthread_mutex_unlock( &mx2 ); assert(r==0); in main() 26 r = pthread_mutex_unlock( &mx1 ); assert(r==0); in main() 27 r = pthread_mutex_unlock( &mx2 ); assert(r==0); in main()
|
D | tc10_rec_lock.c | 35 r = pthread_mutex_unlock( &mx1 ); assert(r == 0); in nearly_main() 37 r = pthread_mutex_unlock( &mx1 ); assert(r == 0); in nearly_main() 39 r = pthread_mutex_unlock( &mx1 ); assert(r == 0); in nearly_main() 42 r = pthread_mutex_unlock( &mx1 ); /* FAILS: assert(r == 0); */ in nearly_main()
|
/external/stressapptest/src/ |
D | disk_blocks.cc | 46 pthread_mutex_unlock(&data_mutex_); in CleanTable() 65 pthread_mutex_unlock(&data_mutex_); in NumElems() 84 pthread_mutex_unlock(&data_mutex_); in InsertOnStructure() 111 pthread_mutex_unlock(&data_mutex_); in RemoveBlock() 131 pthread_mutex_unlock(&data_mutex_); in ReleaseBlock() 148 pthread_mutex_unlock(&data_mutex_); in GetRandomBlock() 163 pthread_mutex_unlock(&data_mutex_); in GetRandomBlock() 178 pthread_mutex_unlock(¶meter_mutex_); in SetParameters() 237 pthread_mutex_unlock(&data_mutex_); in GetUnusedBlock() 250 pthread_mutex_unlock(¶meter_mutex_); in GetUnusedBlock() [all …]
|
/external/lldb/test/functionalities/thread/ |
D | main.c | 10 pthread_mutex_unlock(&mutex2); // Set break point at this line. in thread3() 11 pthread_mutex_unlock(&mutex1); in thread3() 18 pthread_mutex_unlock(&mutex3); in thread2() 20 pthread_mutex_unlock(&mutex2); in thread2() 32 pthread_mutex_unlock(&mutex1); in thread1()
|
/external/chromium_org/third_party/webrtc/system_wrappers/source/ |
D | event_posix.cc | 98 pthread_mutex_unlock(&mutex_); in Reset() 109 pthread_mutex_unlock(&mutex_); in Set() 150 pthread_mutex_unlock(&mutex_); in Wait() 173 pthread_mutex_unlock(&mutex_); in Wait() 190 pthread_mutex_unlock(&mutex_); in StartTimer() 197 pthread_mutex_unlock(&mutex_); in StartTimer() 211 pthread_mutex_unlock(&mutex_); in StartTimer() 250 pthread_mutex_unlock(&mutex_); in Process() 263 pthread_mutex_unlock(&mutex_); in Process()
|
/external/srec/audio/AudioIn/UNIX/src/ |
D | audioin.c | 234 pthread_mutex_unlock(&gAudioMutex); in Initialize() 239 pthread_mutex_unlock(&gAudioMutex); in Initialize() 264 pthread_mutex_unlock ( &gAudioMutex ); 269 pthread_mutex_unlock ( &gAudioMutex ); 366 pthread_mutex_unlock ( &gAudioMutex ); in AcquisitionThread() 395 pthread_mutex_unlock(&gAudioMutex); in AcquisitionThread() 400 pthread_mutex_unlock(&gAudioMutex); in AcquisitionThread() 524 pthread_mutex_unlock ( &gAudioMutex ); in AcquisitionThread() 542 pthread_mutex_unlock ( &gAudioMutex ); in AcquisitionThread() 573 pthread_mutex_unlock ( &gAudioMutex ); in AcquisitionThread() [all …]
|
/external/compiler-rt/test/tsan/ |
D | mutex_cycle2.c | 20 pthread_mutex_unlock(&mu2); in main() 21 pthread_mutex_unlock(&mu1); in main() 29 pthread_mutex_unlock(&mu1); in main() 30 pthread_mutex_unlock(&mu2); in main()
|
/external/libusb/libusb/ |
D | core.c | 520 pthread_mutex_unlock(&ctx->usb_devs_lock); in usbi_alloc_device() 566 pthread_mutex_unlock(&ctx->usb_devs_lock); in usbi_get_device_by_session_id() 804 pthread_mutex_unlock(&dev->lock); in libusb_ref_device() 822 pthread_mutex_unlock(&dev->lock); in libusb_unref_device() 832 pthread_mutex_unlock(&dev->ctx->usb_devs_lock); in libusb_unref_device() 887 pthread_mutex_unlock(&ctx->open_devs_lock); in libusb_open() 901 pthread_mutex_unlock(&ctx->pollfd_modify_lock); in libusb_open() 909 pthread_mutex_unlock(&ctx->pollfd_modify_lock); in libusb_open() 924 pthread_mutex_unlock(&ctx->pollfd_modify_lock); in libusb_open() 988 pthread_mutex_unlock(&ctx->open_devs_lock); in do_close() [all …]
|
D | io.c | 1132 pthread_mutex_unlock(&ctx->flying_transfers_lock); in add_to_flying_list() 1240 pthread_mutex_unlock(&ctx->flying_transfers_lock); in libusb_submit_transfer() 1256 pthread_mutex_unlock(&itransfer->lock); in libusb_submit_transfer() 1286 pthread_mutex_unlock(&itransfer->lock); in libusb_cancel_transfer() 1373 pthread_mutex_unlock(&ctx->flying_transfers_lock); in usbi_handle_transfer_completion() 1405 pthread_mutex_unlock(&ctx->event_waiters_lock); in usbi_handle_transfer_completion() 1455 pthread_mutex_unlock(&ctx->pollfd_modify_lock); in libusb_try_lock_events() 1506 pthread_mutex_unlock(&ctx->events_lock); in libusb_unlock_events() 1513 pthread_mutex_unlock(&ctx->event_waiters_lock); in libusb_unlock_events() 1546 pthread_mutex_unlock(&ctx->pollfd_modify_lock); in libusb_event_handling_ok() [all …]
|
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/ |
D | sctp_process_lock.h | 275 (void)pthread_mutex_unlock(&SCTP_BASE_INFO(wq_addr_mtx)) 289 (void)pthread_mutex_unlock(&SCTP_BASE_INFO(ipi_ep_mtx)) 291 (void)pthread_mutex_unlock(&SCTP_BASE_INFO(ipi_ep_mtx)) 300 (void)pthread_mutex_unlock(&SCTP_BASE_INFO(ipi_pktlog_mtx)) 321 (void)pthread_mutex_unlock(&(_inp)->inp_rdata_mtx) 369 (void)pthread_mutex_unlock(&(_tcb)->tcb_send_mtx) 386 (void)pthread_mutex_unlock(&(_inp)->inp_mtx) 388 (void)pthread_mutex_unlock(&(_inp)->inp_mtx) 390 (void)pthread_mutex_unlock(&(_inp)->inp_create_mtx) 420 #define SCTP_TCB_UNLOCK(_tcb) (void)pthread_mutex_unlock(&(_tcb)->tcb_mtx) [all …]
|
/external/bison/lib/glthread/ |
D | lock.c | 64 pthread_mutex_unlock (&lock->guard); in glthread_rwlock_rdlock_multithreaded() 68 err = pthread_mutex_unlock (&lock->guard); in glthread_rwlock_rdlock_multithreaded() 90 pthread_mutex_unlock (&lock->guard); in glthread_rwlock_wrlock_multithreaded() 94 err = pthread_mutex_unlock (&lock->guard); in glthread_rwlock_wrlock_multithreaded() 167 pthread_mutex_unlock (&lock->lock); in glthread_rwlock_rdlock_multithreaded() 172 return pthread_mutex_unlock (&lock->lock); in glthread_rwlock_rdlock_multithreaded() 193 pthread_mutex_unlock (&lock->lock); in glthread_rwlock_wrlock_multithreaded() 199 return pthread_mutex_unlock (&lock->lock); in glthread_rwlock_wrlock_multithreaded() 215 pthread_mutex_unlock (&lock->lock); in glthread_rwlock_unlock_multithreaded() 225 pthread_mutex_unlock (&lock->lock); in glthread_rwlock_unlock_multithreaded() [all …]
|