/external/valgrind/helgrind/tests/ |
D | tc19_shadowmem.stderr.exp-mips32 | 29 Locks held: none 36 Locks held: none 64 Locks held: none 71 Locks held: none 99 Locks held: none 106 Locks held: none 134 Locks held: none 141 Locks held: none 169 Locks held: none 176 Locks held: none [all …]
|
D | tc20_verifywrap.stderr.exp-mips32 | 22 Locks held: none 26 Locks held: none 110 Thread #x: pthread_cond_{timed}wait called with un-held mutex 125 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 135 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 145 Thread #x: pthread_cond_{timed}wait called with un-held mutex
|
D | tc20_verifywrap.stderr.exp-s390x | 23 Locks held: none 27 Locks held: none 112 Thread #x: pthread_cond_{timed}wait called with un-held mutex 127 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 137 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 147 Thread #x: pthread_cond_{timed}wait called with un-held mutex
|
D | tc20_verifywrap.stderr.exp-glibc-2.21 | 22 Locks held: none 26 Locks held: none 110 Thread #x: pthread_cond_{timed}wait called with un-held mutex 125 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 135 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 145 Thread #x: pthread_cond_{timed}wait called with un-held mutex
|
D | tc20_verifywrap.stderr.exp-glibc-2.18 | 22 Locks held: none 26 Locks held: none 102 Thread #x: pthread_cond_{timed}wait called with un-held mutex 117 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 127 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 137 Thread #x: pthread_cond_{timed}wait called with un-held mutex
|
D | tc20_verifywrap.stderr.exp-mips32-b | 22 Locks held: none 26 Locks held: none 110 Thread #x: pthread_cond_{timed}wait called with un-held mutex 125 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 135 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 145 Thread #x: pthread_cond_{timed}wait called with un-held mutex
|
D | tc20_verifywrap.stderr.exp-solaris | 22 Locks held: none 26 Locks held: none 102 Thread #x: pthread_cond_{timed}wait called with un-held mutex 117 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 127 Thread #x: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread 137 Thread #x: pthread_cond_{timed}wait called with un-held mutex
|
D | pth_destroy_cond.stderr.exp2 | 20 Locks held: 1, at address 0x........ 29 Locks held: none
|
D | pth_cond_destroy_busy.stderr.exp-ppc64 | 16 Locks held: none 23 Locks held: none
|
D | tc23_bogus_condwait.stderr.exp-mips32 | 15 Thread #x: pthread_cond_{timed}wait called with un-held mutex 51 Thread #x: pthread_cond_{timed}wait called with mutex held by a different thread
|
/external/libxml2/ |
D | threads.c | 111 unsigned int held; member 294 tok->held = 0; in xmlNewRMutex() 352 if (tok->held) { in xmlRMutexLock() 354 tok->held++; in xmlRMutexLock() 359 while (tok->held) in xmlRMutexLock() 365 tok->held = 1; in xmlRMutexLock() 397 tok->held--; in xmlRMutexUnlock() 398 if (tok->held == 0) { in xmlRMutexUnlock()
|
/external/clang/test/PCH/ |
D | thread-safety-attrs.cpp | 251 expected-warning{{mutex 'sls_mu' is not held on every path through here}}\ in sls_fun_bad_6() 252 expected-warning{{releasing mutex 'sls_mu' that was not held}} in sls_fun_bad_6() 262 expected-warning{{expecting mutex 'sls_mu' to be held at start of each loop}} in sls_fun_bad_7() 296 expected-warning{{expecting mutex 'sls_mu' to be held at start of each loop}} in sls_fun_bad_11()
|
/external/valgrind/drd/tests/ |
D | hold_lock_1.stderr.exp | 6 Lock on mutex 0x........ was held during ... ms (threshold: 500 ms). 17 Lock on rwlock 0x........ was held during ... ms (threshold: 500 ms).
|
D | hold_lock_2.stderr.exp | 8 Lock on rwlock 0x........ was held during ... ms (threshold: 500 ms).
|
/external/clang/docs/ |
D | ThreadSafetyAnalysis.rst | 113 capability can be held by only one thread at a time, while a shared capability 114 can be held by many threads at the same time. This mechanism enforces a 128 The set of capabilities that are actually held by a given thread at a given 132 and describes the set of capabilities that are statically known to be held, or 133 not held, at that particular point. This environment is a conservative 134 approximation of the full set of capabilities that will actually held by a 190 must be held on entry to the function, *and must still be held on exit*. 425 to fail (no return) if the capability is not held. See :ref:`mutexheader`, 465 ensuring that a capability is held before reading or writing to guarded data, 467 *not* held. [all …]
|
/external/valgrind/drd/ |
D | drd_rwlock.c | 545 Long held = VG_(read_millisecond_timer)() - p->acquiry_time_ms; in DRD_() local 546 if (held > DRD_(s_shared_threshold_ms)) in DRD_() 550 rwlock, p->acquired_at, held, DRD_(s_shared_threshold_ms) }; in DRD_() 575 Long held = VG_(read_millisecond_timer)() - p->acquiry_time_ms; in DRD_() local 576 if (held > DRD_(s_exclusive_threshold_ms)) in DRD_() 580 rwlock, p->acquired_at, held, in DRD_()
|
D | drd_mutex.c | 429 Long held = VG_(read_millisecond_timer)() - p->acquiry_time_ms; in DRD_() local 430 if (held > s_mutex_lock_threshold_ms) in DRD_() 434 mutex, p->acquired_at, held, s_mutex_lock_threshold_ms }; in DRD_()
|
/external/libgsm/ |
D | NOTICE | 7 software for any purpose nor are held responsible for any defects of 29 of this software for any purpose nor are held responsible
|
D | COPYRIGHT | 7 software for any purpose nor are held responsible for any defects of 29 of this software for any purpose nor are held responsible
|
/external/llvm/test/Transforms/Util/MemorySSA/ |
D | load-invariant.ll | 8 ; Currently XFAILed because this optimization was held back from the initial
|
/external/python/cpython2/Doc/c-api/ |
D | init.rst | 351 interpreter lock` or :term:`GIL`, that must be held by the current thread before 474 means any locks held by other threads will never be released. Python solves 484 being held by a thread that is defunct after the fork. 585 Return the current thread state. The global interpreter lock must be held. 593 *tstate*, which may be *NULL*. The global interpreter lock must be held 700 be held, but may be held if it is necessary to serialize calls to this 707 lock must be held. 713 held. The interpreter state must have been reset with a previous call to 720 The global interpreter lock need not be held, but may be held if it is 727 must be held. [all …]
|
/external/tinyxml2/ |
D | NOTICE | 2 warranty. In no event will the authors be held liable for any
|
/external/tinyxml/ |
D | NOTICE | 2 warranty. In no event will the authors be held liable for any
|
/external/nanopb-c/ |
D | LICENSE.txt | 4 implied warranty. In no event will the authors be held liable
|
D | NOTICE | 4 implied warranty. In no event will the authors be held liable
|