/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
KeyboardStateMultiTouchTests.java | 60 // Chording input in shift locked. 62 // Long press shift key, enter alphabet shift locked. 70 // Release shift key, switch back to alphabet shift locked. 77 // Release "123?" key, switch back to alphabet shift locked. 117 // Alphabet shift locked -> symbols -> "ABC" key + letter -> symbols -> 118 // alphabet shift locked. 121 // Long press shift key, enter alphabet shift locked. 126 // Press "ABC" key, enter into chording alphabet shift locked. 132 // Press/release "ABC" key, switch to alphabet shift locked. 135 // Alphabet shift locked -> symbols -> "=\<" key + letter -> symbols - [all...] |
/device/generic/goldfish/camera/ |
EmulatedCamera.h | 123 * NOTE: When this method is called the object is locked. 129 * NOTE: When this method is called the object is locked. 138 * NOTE: When this method is called the object is locked. 143 * NOTE: When this method is called the object is locked. 148 * NOTE: When this method is called the object is locked. 155 * NOTE: When this method is called the object is locked. 161 * NOTE: When this method is called the object is locked. 166 * NOTE: When this method is called the object is locked. 173 * NOTE: When this method is called the object is locked. 179 * NOTE: When this method is called the object is locked [all...] |
/external/compiler-rt/test/tsan/ |
mutex_bad_read_lock.cc | 11 // CHECK: WARNING: ThreadSanitizer: read lock of a write locked mutex 18 // CHECK: SUMMARY: ThreadSanitizer: read lock of a write locked mutex
|
mutex_bad_read_unlock.cc | 12 // CHECK: WARNING: ThreadSanitizer: read unlock of a write locked mutex 19 // CHECK: SUMMARY: ThreadSanitizer: read unlock of a write locked mutex
|
/external/valgrind/drd/tests/ |
pth_cancel_locked.c | 18 /* Inform the main thread that s_mutex2 has been locked, and wait for pthread_cancel(). */ 38 /* Wait until the created thread has locked s_mutex2. */
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
IccCardConstants.java | 35 /* LOCKED means ICC is locked by pin or by network */ 36 public static final String INTENT_VALUE_ICC_LOCKED = "LOCKED"; 39 /* INTERNAL LOCKED means ICC is locked by pin or by network */ 49 /* PIN means ICC is locked on PIN1 */ 51 /* PUK means ICC is locked on PUK1 */ 53 /* NETWORK means ICC is locked on NETWORK PERSONALIZATION */
|
/frameworks/native/include/gui/ |
CpuConsumer.h | 92 // how many buffers can be locked for user access at the same time. 103 // filling out the passed-in locked buffer structure with the native pointer 105 // NOT_ENOUGH_DATA if the maximum number of buffers is already locked. 107 // Only a fixed number of buffers can be locked at a time, determined by the 113 // Returns a locked buffer to the queue, allowing it to be reused. Since 114 // only a fixed number of buffers may be locked at a time, old buffers must 120 // Maximum number of buffers that can be locked at a time 143 // Count of currently locked buffers
|
/external/autotest/server/cros/ |
host_lock_manager_unittest.py | 32 @attribute locked: a boolean, True == host is locked. 37 def __init__(self, locked=False): 40 @param locked: a boolean, True == host is locked. 42 self.locked = locked 50 @attribute locked: a boolean, True == host is locked. 87 """Test that a host which is already locked is skipped."" [all...] |
/external/skia/src/core/ |
SkDiscardableMemory.h | 37 /** Must not be called while locked. 42 * Locks the memory, prevent it from being discarded. Once locked. you may 54 * valid when the discardable memory object is locked.
|
/external/libchrome/base/threading/ |
thread_id_name_manager.cc | 27 AutoLock locked(lock_); 45 AutoLock locked(lock_); 53 AutoLock locked(lock_); 77 AutoLock locked(lock_); 94 AutoLock locked(lock_);
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
posix_event.hpp | 52 ASIO_ASSERT(lock.locked()); 62 ASIO_ASSERT(lock.locked()); 74 ASIO_ASSERT(lock.locked()); 89 ASIO_ASSERT(lock.locked()); 98 ASIO_ASSERT(lock.locked());
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowCamera.java | 21 private boolean locked; field in class:ShadowCamera 34 locked = true; 46 locked = false; 51 locked = true; 126 return locked;
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
InvocationRecord.java | 37 * The {@link #lock()} method makes an instance of this class immutable. After an instance is locked,
49 private boolean locked = false;
field in class:InvocationRecord 64 * Lock this instance, making it immutable. After an instance is locked,
69 locked = true;
73 * Return true if this object has been locked, false otherwise. See {@link #lock()}.
75 * @return true if this object has been locked, false otherwise.
78 return locked;
106 * an <code>AssertFailedException</code> if this object has been locked. See {@link #lock()}.
110 * @throws AssertFailedException - if the key is null or this object has been locked.
114 Assert.isFalse(locked, "The InvocationRecord is locked!"); [all...] |
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
InvocationRecord.java | 37 * The {@link #lock()} method makes an instance of this class immutable. After an instance is locked,
50 private boolean locked = false;
field in class:InvocationRecord 64 * Lock this instance, making it immutable. After an instance is locked,
69 locked = true;
73 * Return true if this object has been locked, false otherwise. See {@link #lock()}.
74 * @return true if this object has been locked, false otherwise.
77 return locked;
105 * an <code>AssertFailedException</code> if this object has been locked. See {@link #lock()}.
110 * @throws AssertFailedException - if the key is null or this object has been locked.
114 Assert.isFalse(locked, "The InvocationRecord is locked!"); [all...] |
/art/runtime/entrypoints/quick/ |
quick_jni_entrypoints.cc | 81 extern void JniMethodEndSynchronized(uint32_t saved_local_ref_cookie, jobject locked, 84 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop. 112 jobject locked, Thread* self) { 114 UnlockJniSynchronizedMethod(locked, self); 128 // locked object. 129 jobject locked = called->IsSynchronized() ? handle_scope->GetHandle(0).ToJObject() : nullptr; variable 132 if (locked != nullptr) { 133 UnlockJniSynchronizedMethod(locked, self); 138 if (locked != nullptr) { 139 UnlockJniSynchronizedMethod(locked, self); // Must decode before pop [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/ |
smaps | 15 Locked: 0 kB 30 Locked: 0 kB 45 Locked: 0 kB 60 Locked: 0 kB 75 Locked: 0 kB 90 Locked: 0 kB 105 Locked: 0 kB 120 Locked: 0 kB 135 Locked: 0 kB 150 Locked: 0 k [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_contextlib.py | 273 def boilerPlate(self, lock, locked): 274 self.assertFalse(locked()) 276 self.assertTrue(locked()) 277 self.assertFalse(locked()) 280 self.assertTrue(locked()) 282 self.assertFalse(locked()) 286 self.boilerPlate(lock, lock.locked) 294 def locked(): function in function:LockContextTestCase.testWithCondition 296 self.boilerPlate(lock, locked) 300 def locked() function in function:LockContextTestCase.testWithSemaphore 310 def locked(): function in function:LockContextTestCase.testWithBoundedSemaphore [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_contextlib.py | 273 def boilerPlate(self, lock, locked): 274 self.assertFalse(locked()) 276 self.assertTrue(locked()) 277 self.assertFalse(locked()) 280 self.assertTrue(locked()) 282 self.assertFalse(locked()) 286 self.boilerPlate(lock, lock.locked) 294 def locked(): function in function:LockContextTestCase.testWithCondition 296 self.boilerPlate(lock, locked) 300 def locked() function in function:LockContextTestCase.testWithSemaphore 310 def locked(): function in function:LockContextTestCase.testWithBoundedSemaphore [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_contextlib.py | 273 def boilerPlate(self, lock, locked): 274 self.assertFalse(locked()) 276 self.assertTrue(locked()) 277 self.assertFalse(locked()) 280 self.assertTrue(locked()) 282 self.assertFalse(locked()) 286 self.boilerPlate(lock, lock.locked) 294 def locked(): function in function:LockContextTestCase.testWithCondition 296 self.boilerPlate(lock, locked) 300 def locked() function in function:LockContextTestCase.testWithSemaphore 310 def locked(): function in function:LockContextTestCase.testWithBoundedSemaphore [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_contextlib.py | 273 def boilerPlate(self, lock, locked): 274 self.assertFalse(locked()) 276 self.assertTrue(locked()) 277 self.assertFalse(locked()) 280 self.assertTrue(locked()) 282 self.assertFalse(locked()) 286 self.boilerPlate(lock, lock.locked) 294 def locked(): function in function:LockContextTestCase.testWithCondition 296 self.boilerPlate(lock, locked) 300 def locked() function in function:LockContextTestCase.testWithSemaphore 310 def locked(): function in function:LockContextTestCase.testWithBoundedSemaphore [all...] |
/external/autotest/cli/ |
host_unittest.py | 123 u'locked': False, 135 u'locked': True, 155 u'locked': False, 167 u'locked': True, 189 u'locked': True, 214 u'locked': True, 226 u'locked': True, 252 u'locked': True, 288 u'locked': True, 300 u'locked': True [all...] |
/external/autotest/client/site_tests/network_SIMLocking/ |
network_SIMLocking.py | 26 - Unlock a pin-locked SIM. 27 - Attempt to unlock a pin-locked SIM with incorrect sim-pin, until it gets 28 puk-locked. 29 - Unblock a puk-locked SIM. 30 - Attempt to unblock a puk-locked SIM with incorrect sim-puk, until the 107 """ Helper method to check if the SIM has been pin-locked. """ 119 """ Helper method to check if the SIM has been puk-locked. """ 145 """ Helper method to reset the modem with the SIM locked. """ 146 # When the SIM is locked, the enable operation fails and 160 raise error.TestFail('Expected SIM to be locked after reset.' [all...] |
/external/dbus/dbus/ |
dbus-string-private.h | 49 unsigned int locked : 1; /**< DBusString has been locked and can't be changed */ member in struct:__anon9632 89 * modifiable - may not be locked or const. Also declares 96 _dbus_assert (!(real)->locked) 99 * Checks assertions about a string object that may be locked but 110 * Checks assertions about a string that may be const or locked. Also
|
/external/chromium-trace/catapult/telemetry/telemetry/util/mac/ |
keychain_helper.py | 18 Returns True if the keychain is locked, or if there is an error determining 32 locked. 45 locked.
|
/external/tpm2/ |
NV_ReadLock.c | 16 // nvIndex may not be write locked 44 // Index is already locked for write 55 // if TPMA_NV_READ_STCLEAR is not set, the index can not be read-locked
|