Home
last modified time | relevance | path

Searched refs:held (Results 1 – 25 of 221) sorted by relevance

123456789

/external/valgrind/helgrind/tests/
Dtc19_shadowmem.stderr.exp-mips3227 Locks held: none
34 Locks held: none
64 Locks held: none
71 Locks held: none
101 Locks held: none
108 Locks held: none
138 Locks held: none
145 Locks held: none
175 Locks held: none
182 Locks held: none
[all …]
Dtc20_verifywrap.stderr.exp-glibc-2.1822 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
Dtc20_verifywrap.stderr.exp-mips3223 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
Dtc20_verifywrap.stderr.exp-glibc-2.2122 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
Dtc20_verifywrap.stderr.exp-mips32-b23 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
Dtc20_verifywrap.stderr.exp-s390x23 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
Dtc20_verifywrap.stderr.exp-solaris22 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
Dpth_cond_destroy_busy.stderr.exp-ppc6416 Locks held: none
23 Locks held: none
Dtc23_bogus_condwait.stderr.exp-mips3215 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/jetty/src/java/org/eclipse/jetty/servlet/
DHolder.java205 public void setHeldClass(Class<? extends T> held) in setHeldClass() argument
207 _class=held; in setHeldClass()
208 if (held!=null) in setHeldClass()
210 _className=held.getName(); in setHeldClass()
212 _name=held.getName()+"-"+Integer.toHexString(this.hashCode()); in setHeldClass()
/external/libxml2/
Dthreads.c123 unsigned int held; member
306 tok->held = 0; in xmlNewRMutex()
364 if (tok->held) { in xmlRMutexLock()
366 tok->held++; in xmlRMutexLock()
371 while (tok->held) in xmlRMutexLock()
377 tok->held = 1; in xmlRMutexLock()
409 tok->held--; in xmlRMutexUnlock()
410 if (tok->held == 0) { in xmlRMutexUnlock()
/external/clang/test/PCH/
Dthread-safety-attrs.cpp251 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/
Dhold_lock_1.stderr.exp6 Lock on mutex 0x........ was held during ... ms (threshold: 500 ms).
17 Lock on rwlock 0x........ was held during ... ms (threshold: 500 ms).
Dhold_lock_2.stderr.exp8 Lock on rwlock 0x........ was held during ... ms (threshold: 500 ms).
/external/clang/docs/
DThreadSafetyAnalysis.rst113 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/
Ddrd_rwlock.c545 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_()
Ddrd_mutex.c429 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/
DNOTICE7 software for any purpose nor are held responsible for any defects of
29 of this software for any purpose nor are held responsible
/external/tinyxml2/
DNOTICE2 warranty. In no event will the authors be held liable for any
/external/tinyxml/
DNOTICE2 warranty. In no event will the authors be held liable for any
/external/nanopb-c/
DNOTICE4 implied warranty. In no event will the authors be held liable
DLICENSE.txt4 implied warranty. In no event will the authors be held liable
/external/opencv/
DLICENSE_Android_NDK5 In no event will the authors be held liable for any damages arising from the use of this software.
/external/mksh/
DNOTICE17 * may a licensor, author or contributor be held liable for indirect,
/external/zlib/
DNOTICE4 warranty. In no event will the authors be held liable for any damages

123456789