Searched refs:Lock (Results 1 - 25 of 786) sorted by last modified time

1234567891011>>

/external/valgrind/main/drd/tests/
H A Dannotate_smart_pointer.cpp66 void Lock() function in class:Mutex
127 void Lock() function in class:Mutex
279 m_mutex.Lock();
287 m_mutex.Lock();
H A 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).
H A Dhold_lock_2.stderr.exp8 Lock on rwlock 0x........ was held during ... ms (threshold: 500 ms).
H A Dtsan_thread_wrappers_pthread.h120 void Lock() { function in class:SpinLock
143 void Lock() { function in class:SpinLock
202 void Lock() { CHECK(0 == pthread_mutex_lock(&mu_));} function in class:Mutex
210 void ReaderLock() { Lock(); }
214 void LockWhen(Condition cond) { Lock(); WaitLoop(cond); }
215 void ReaderLockWhen(Condition cond) { Lock(); WaitLoop(cond); }
219 { Lock(); return WaitLoopWithTimeout(cond, millis); }
221 { Lock(); return WaitLoopWithTimeout(cond, millis); }
265 mu_->Lock();
303 void Lock() { CHEC function in class:RWLock
[all...]
H A Dtsan_unittest.cpp147 printf_mu.Lock();\
365 // 3. MU.Lock() a. write(GLOB)
366 // b. MU.Lock()
379 MU.Lock();
390 MU.Lock();
415 // b. MU.Lock()
427 MU.Lock();
495 // 3. MU.Lock() a. write(GLOB)
496 // b. MU.Lock()
507 MU.Lock();
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dhginfo.stderrB.exp3 Lock ga 0x........ {
13 Lock ga 0x........ {
/external/valgrind/main/helgrind/
H A Dhg_errors.c94 /* maps from Lock .unique fields to LockP*s */
106 Lock* lk1 = (Lock*)lk1W;
107 Lock* lk2 = (Lock*)lk2W;
115 /* Given a normal Lock (LockN), convert it to a persistent Lock
127 the corresponding Lock structures we maintain will have been freed.
130 linked list of all Lock structures. That stops us prodding around
131 in potentially freed-up Lock structure
[all...]
H A Dhg_errors.h59 void HG_(record_error_UnlockUnlocked) ( Thread*, Lock* );
60 void HG_(record_error_UnlockForeign) ( Thread*, Thread*, Lock* );
H A Dhg_lock_n_thread.c65 static Bool is_sane_Lock_BASE ( Lock* lock )
87 /* Lock is either r- or w-held. */
102 Bool HG_(is_sane_LockP) ( Lock* lock ) {
109 Bool HG_(is_sane_LockN) ( Lock* lock ) {
116 Bool HG_(is_sane_LockNorP) ( Lock* lock ) {
H A Dhg_lock_n_thread.h89 WordSetID locksetA; /* WordSet of Lock* currently held by thread */
106 contains Lock*s. Solution is to copy any Lock which is to be
112 /* Lock kinds. */
157 Lock; typedef in typeref:struct:_Lock
159 #define Lock_INVALID ((Lock*)1UL)
166 Bool HG_(is_sane_LockP) ( Lock* lock );
167 Bool HG_(is_sane_LockN) ( Lock* lock );
168 Bool HG_(is_sane_LockNorP) ( Lock* lock );
H A Dhg_main.c132 static Lock* admin_locks = NULL;
137 /* Mapping table for lock guest addresses to Lock* */
138 static WordFM* map_locks = NULL; /* WordFM LockAddr Lock* */
141 static WordSetU* univ_lsets = NULL; /* sets of Lock* */
142 static WordSetU* univ_laog = NULL; /* sets of Lock*, for LAOG */
153 Lock* HG_(get_admin_locks) ( void ) { return admin_locks; }
186 static Lock* mk_LockN ( LockKind kind, Addr guestaddr ) {
188 Lock* lock = HG_(zalloc)( "hg.mk_Lock.1", sizeof(Lock) );
209 /* Release storage for a Lock
[all...]
H A Dlibhb.h163 Lock* HG_(get_admin_locks) ( void );
/external/valgrind/main/helgrind/tests/
H A Dannotate_rwlock.stderr.exp102 Lock at 0x........ was first observed
H A Dlocked_vs_unlocked1_fwd.stderr.exp17 Lock at 0x........ was first observed
H A Dlocked_vs_unlocked1_rev.stderr.exp17 Lock at 0x........ was first observed
H A Dlocked_vs_unlocked2.stderr.exp17 Lock at 0x........ was first observed
21 Lock at 0x........ was first observed
25 Lock at 0x........ was first observed
H A Dlocked_vs_unlocked3.stderr.exp17 Lock at 0x........ was first observed
H A Dtc09_bad_unlock.stderr.exp12 Lock at 0x........ was first observed
32 Lock at 0x........ was first observed
59 Lock at 0x........ was first observed
70 Lock was previously acquired
97 Lock at 0x........ was first observed
H A Dtc10_rec_lock.stderr.exp19 Lock at 0x........ was first observed
H A Dtc12_rwl_trivial.stderr.exp12 Lock at 0x........ was first observed
H A Dtc20_verifywrap.stderr.exp160 Lock at 0x........ was first observed
174 Lock at 0x........ was first observed
190 Lock at 0x........ was first observed
/external/smack/src/com/kenai/jbosh/
H A DApacheHTTPResponse.java20 import java.util.concurrent.locks.Lock;
63 * Lock used for internal synchronization.
65 private final Lock lock = new ReentrantLock();
H A DApacheHTTPSender.java19 import java.util.concurrent.locks.Lock;
45 * Lock used for internal synchronization.
47 private final Lock lock = new ReentrantLock();
H A DHTTPExchange.java20 import java.util.concurrent.locks.Lock;
45 * Lock instance used to protect and provide conditions.
47 private final Lock lock = new ReentrantLock();
H A DRequestIDSequence.java21 import java.util.concurrent.locks.Lock;
65 private static final Lock LOCK = new ReentrantLock();

Completed in 165 milliseconds

1234567891011>>