/external/clang/test/SemaCXX/ |
warn-thread-safety-analysis.cpp | 210 // expected-warning{{unlocking 'sls_mu' that was not locked}} 216 // expected-warning{{locking 'sls_mu' that is already locked}} 222 } // expected-warning{{mutex 'sls_mu' is still locked at the end of function}} 229 } // expected-warning{{mutex 'sls_mu' is not locked on every path through here}} \ 230 // expected-warning{{mutex 'sls_mu2' is not locked on every path through here}} 236 } // expected-warning{{mutex 'sls_mu' is not locked on every path through here}} 249 expected-warning{{mutex 'sls_mu' is not locked on every path through here}}\ 250 expected-warning{{unlocking 'sls_mu' that was not locked}} 260 expected-warning{{expecting mutex 'sls_mu' to be locked at start of each loop}} 272 sls_mu.Unlock(); // expected-warning{{expecting mutex 'sls_mu' to be locked at start of each loop} [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
layout_test_runner_unittest.py | 194 locked, unlocked = self.get_shards(num_workers=2, fully_parallel=False) 199 self.assert_shards(locked, 216 locked, unlocked = self.get_shards(num_workers=2, fully_parallel=True, max_locked_shards=2) 217 self.assert_shards(locked, 235 locked, unlocked = self.get_shards(num_workers=1, fully_parallel=False) 236 self.assert_shards(locked, 254 locked, unlocked = self.get_shards(num_workers=1, fully_parallel=False, 256 self.assertEqual(len(locked), 0) 260 locked, unlocked = self.get_shards(num_workers=1, fully_parallel=False, 262 self.assertEqual(len(locked), 1 [all...] |
/external/valgrind/main/drd/tests/ |
tc23_bogus_condwait.stderr.exp-linux-ppc | 7 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 16 Mutex not locked: mutex 0x........, recursion count 0, owner 0. 31 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 43 Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 2. 51 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 63 The impossible happened: mutex is locked simultaneously by two threads: mutex 0x........, recursion count 1, owner 2. 71 Mutex not locked by calling thread: mutex 0x........, recursion count 2, owner 1.
|
tc09_bad_unlock.stderr.exp-glibc2.8 | 2 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 12 Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 1. 27 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. 36 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 50 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
|
tc09_bad_unlock.stderr.exp-ppc | 2 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 12 Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 1. 27 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. 36 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 50 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
|
tc09_bad_unlock.stderr.exp-x86 | 2 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 12 Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 1. 27 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1. 36 Mutex not locked by calling thread: mutex 0x........, recursion count 0, owner 1. 50 Destroying locked mutex: mutex 0x........, recursion count 1, owner 1.
|
tc23_bogus_condwait.stderr.exp-darwin-amd64 | 6 Mutex not locked: mutex 0x........, recursion count 0, owner 0. 14 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 33 Mutex not locked by calling thread: mutex 0x........, recursion count 1, owner 2. 41 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 53 The impossible happened: mutex is locked simultaneously by two threads: mutex 0x........, recursion count 1, owner 2. 61 Mutex not locked by calling thread: mutex 0x........, recursion count 2, owner 1.
|
/external/chromium/chrome/browser/resources/chromeos/ |
sim_unlock.js | 67 $('locked-pin-overlay').hidden = false; 82 $('locked-pin-overlay').hidden = false; 104 $('locked-pin-no-tries-overlay').hidden = false; 113 $('locked-puk-overlay').hidden = false; 117 $('locked-puk-no-tries-overlay').hidden = false; 127 $('locked-pin-overlay').hidden = true; 128 $('locked-pin-no-tries-overlay').hidden = true; 129 $('locked-puk-overlay').hidden = true; 131 $('locked-puk-no-tries-overlay').hidden = true;
|
/external/chromium_org/ui/gfx/ |
gtk_native_view_id_manager.cc | 57 base::AutoLock locked(lock_); 89 base::AutoLock locked(lock_); 103 base::AutoLock locked(lock_); 117 base::AutoLock locked(lock_); 150 base::AutoLock locked(lock_); 164 base::AutoLock locked(lock_); 204 base::AutoLock locked(lock_); 218 base::AutoLock locked(lock_); 228 base::AutoLock locked(lock_);
|
/external/chromium/chrome/browser/chromeos/login/ |
login_performer.h | 132 // when screen is not locked yet. 135 // Resolves LoginFailure when screen is locked. 138 // Resolves LoginFailure::NETWORK_AUTH_FAILED error when screen is locked. 183 // such requests with cases when screen is locked on its own. 188 // is locked during that stage. No need to resolve screen lock action then.
|
/external/chromium_org/chrome/browser/extensions/api/idle/ |
idle_manager.cc | 104 IdleState IdleTimeToIdleState(bool locked, int idle_time, int idle_threshold) { 107 if (locked) { 254 bool locked = idle_time_provider_->CheckIdleStateIsLocked(); local 258 last_state_ = IdleTimeToIdleState(locked, 269 IdleState new_state = IdleTimeToIdleState(locked,
|
/external/chromium_org/third_party/flot/ |
jquery.flot.crosshair.min.js | 59 */(function(e){function n(e){function n(n){if(t.locked)return;t.x!=-1&&(t.x=-1,e.triggerRedrawOverlay())}function r(n){if(t.locked)return;if(e.getSelection&&e.getSelection()){t.x=-1;return}var r=e.offset();t.x=Math.max(0,Math.min(n.pageX-r.left,e.width())),t.y=Math.max(0,Math.min(n.pageY-r.top,e.height())),e.triggerRedrawOverlay()}var t={x:-1,y:-1,locked:!1};e.setCrosshair=function(r){if(!r)t.x=-1;else{var i=e.p2c(r);t.x=Math.max(0,Math.min(i.left,e.width())),t.y=Math.max(0,Math.min(i.top,e.height()))}e.triggerRedrawOverlay()},e.clearCrosshair=e.setCrosshair,e.lockCrosshair=function(r){r&&e.setCrosshair(r),t.locked=!0},e.unlockCrosshair=function(){t.locked=!1},e.hooks.bindEvents.push(function(e,t){if(!e.getOptions().crosshair.mode)return;t.mouseout(n),t (…)
|
/frameworks/compile/libbcc/include/bcc/Support/ |
FileBase.h | 48 // The shared resource behind the Stream locked in ReadLock mode can be 49 // locked by other processes at the same time. 52 // The shared resource behind the Stream locked in WriteLock mode can only 53 // be locked by one process. It's exclusive. That is, the shared resource 113 // request issued will return immediately when the shared resource is locked.
|
/device/generic/goldfish/camera/ |
EmulatedBaseCamera.h | 62 * NOTE: When this method is called the object is locked. 84 * NOTE: When this method is called the object is locked. 92 * NOTE: When this method is called the object is locked.
|
/external/chromium/base/threading/ |
worker_pool_posix.cc | 116 AutoLock locked(lock_); 124 AutoLock locked(lock_); 143 AutoLock locked(lock_);
|
/external/chromium_org/ash/test/ |
test_session_state_delegate.h | 67 // Updates the internal state that indicates whether the screen can be locked. 93 // Whether the screen can be locked. Locking will only actually be allowed 100 // Whether the screen is currently locked.
|
/external/chromium_org/ppapi/cpp/ |
mouse_lock.h | 64 /// LockMouse() requests the mouse to be locked. 66 /// While the mouse is locked, the cursor is implicitly hidden from the user. 73 /// would be had it not been locked.
|
/external/chromium_org/third_party/sqlite/src/test/ |
lock.test | 105 # on that same table because the SELECT has the table locked. 116 #} {1 {database table is locked}} 170 } {1 {database is locked}} 193 } {1 {database is locked} 0} 201 } {1 {database is locked} {}} 214 } {1 {database is locked} {0 1 2 3 4 5}} 227 } {1 {database is locked} {}} 249 } {1 {database is locked}} 268 # has the database locked. 277 } {1 {database is locked}} [all...] |
lock2.test | 65 } {database is locked} 70 } {1 {database is locked}} 87 } {database is locked}
|
sysfault.test | 97 1 EAGAIN {{database is locked} {disk I/O error}} 98 2 ETIMEDOUT {{database is locked} {disk I/O error}} 99 3 EBUSY {{database is locked} {disk I/O error}} 100 4 EINTR {{database is locked} {disk I/O error}} 101 5 ENOLCK {{database is locked} {disk I/O error}} 102 6 EACCES {{database is locked} {disk I/O error}}
|
/frameworks/native/cmds/flatland/ |
README.txt | 20 Additionally, all relevant hardware clocks should be locked at a particular 26 If running the benchmark with the clocks locked causes thermal issues, the -s 73 locked and that no heavy-weight services / daemons are running in the
|
/hardware/qcom/display/msm8960/libgenlock/ |
genlock.h | 84 * lock is requested on the buffer which has previously been locked for a 85 * read or write operation. A buffer can be locked by multiple clients for 100 * Unlocks a buffer that has previously been locked by the client.
|
/hardware/qcom/display/msm8x26/libgenlock/ |
genlock.h | 84 * lock is requested on the buffer which has previously been locked for a 85 * read or write operation. A buffer can be locked by multiple clients for 100 * Unlocks a buffer that has previously been locked by the client.
|
/dalvik/vm/ |
RawDexFile.cpp | 126 bool locked = false; local 169 locked = true; 174 * optimized DEX. The file descriptor returned is still locked, 217 if (locked) { 224 locked = false; 241 if (locked)
|
/external/chromium_org/net/third_party/nss/ssl/ |
notes.txt | 74 sec->sendSequence locked by xmitBufLock 76 sec->writeBuf* (ptr & content) locked by xmitBufLock 77 "in" locked by xmitBufLock 85 ss->sec->writebuf* (ptr & content) locked by xmitBufLock 86 "buf" locked by xmitBufLock 92 gs->* (locked by recvBufLock )
|