HomeSort by relevance Sort by last modified time
    Searched refs:LOCKED (Results 1 - 25 of 63) sorted by null

1 2 3

  /system/security/keystore/include/keystore/
keystore.h 32 LOCKED = STATE_LOCKED, // 2
59 // super-encrypted blob while keystore is locked is different.
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileDispatcher.java 35 public static final int LOCKED = 0; // Obtained requested lock
SimpleAsynchronousFileChannelImpl.java 208 if (n != FileDispatcher.LOCKED || !isOpen()) {
264 if (n == FileDispatcher.LOCKED && isOpen()) {
269 return null; // locked by someone else
  /development/tools/bugreport/src/com/android/bugreport/stacks/
LockSnapshot.java 25 public static final int LOCKED = 1;
30 public static final int ANY = LOCKED | WAITING | SLEEPING | BLOCKED;
ThreadSnapshotParser.java 59 " - locked \\<0x([0-9a-fA-F]{1,16})\\> \\(a (?:(.+)\\.)?([^.]+)\\)");
228 lock.type = LockSnapshot.LOCKED;
326 + (ls.type == LockSnapshot.LOCKED ? "locked" : "waiting")
  /external/linux-kselftest/tools/testing/selftests/vm/
mlock2-tests.c 158 #define LOCKED "lo"
163 bool locked; local
170 locked = is_vmflag_set(addr, LOCKED);
171 if (!locked)
212 ret = locked && (vma_rss < vma_size);
249 if (!is_vmflag_set((unsigned long)map, LOCKED)) {
250 printf("VMA flag %s is missing on page 1\n", LOCKED);
254 if (!is_vmflag_set((unsigned long)map + page_size, LOCKED)) {
255 printf("VMA flag %s is missing on page 2\n", LOCKED);
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_ev_compensation_advanced.py 31 LOCKED = 3
71 # Capture a single shot with the same EV comp and locked AE.
85 if (cap['metadata']['android.control.aeState'] == LOCKED):
90 assert(cap['metadata']['android.control.aeState'] == LOCKED)
test_ev_compensation_basic.py 26 LOCKED = 3
66 # Capture a single shot with the same EV comp and locked AE.
73 if cap['metadata']['android.control.aeState'] == LOCKED:
88 print 'lumas in AE locked captures: ', luma_locked
91 assert caps[THRESH_CONVERGE_FOR_EV-1]['metadata']['android.control.aeState'] == LOCKED
test_ae_precapture_trigger.py 32 LOCKED = 3
  /external/python/cpython3/Lib/http/
__init__.py 102 LOCKED = 423, 'Locked'
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 51 * When key modifiers are toggled into a latched or locked state, the state
53 * meta state integer managed by the client. These latched or locked modifiers
91 * Flag that indicates that the SHIFT key is locked in CAPS mode.
95 * Flag that indicates that the ALT key is locked.
99 * Flag that indicates that the SYM key is locked.
157 * or locked meta key.
178 * or locked meta key.
197 * @return 0 if inactive, 1 if active, 2 if locked.
228 * @return 0 if inactive, 1 if active, 2 if locked.
241 // META_SELECTING is only ever set to PRESSED and can't be LOCKED, so return
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueuedSynchronizerTest.java 43 /** An eccentric value for locked synchronizer state. */
44 static final int LOCKED = (1 << 31) | (1 << 15);
50 assertTrue(state == UNLOCKED || state == LOCKED);
51 return state == LOCKED;
55 assertEquals(LOCKED, acquires);
56 return compareAndSetState(UNLOCKED, LOCKED);
60 if (getState() != LOCKED) throw new IllegalMonitorStateException();
61 assertEquals(LOCKED, releases);
67 return tryAcquireNanos(LOCKED, nanos);
71 return tryAcquire(LOCKED);
    [all...]
AbstractQueuedLongSynchronizerTest.java 40 /** An eccentric value > 32 bits for locked synchronizer state. */
41 static final long LOCKED = (1L << 63) | (1L << 15);
47 assertTrue(state == UNLOCKED || state == LOCKED);
48 return state == LOCKED;
52 assertEquals(LOCKED, acquires);
53 return compareAndSetState(UNLOCKED, LOCKED);
57 if (getState() != LOCKED) throw new IllegalMonitorStateException();
63 return tryAcquireNanos(LOCKED, nanos);
67 return tryAcquire(LOCKED);
71 return tryRelease(LOCKED);
    [all...]
  /frameworks/av/media/libaudioprocessing/
AudioResamplerDyn.h 150 template<int CHANNELS, bool LOCKED, int STRIDE>
AudioResamplerFirProcess.h 173 * ProcessL() calls ProcessBase() with TFUNC = InterpNull, for fixed/locked phase.
374 template<int CHANNELS, bool LOCKED, int STRIDE, typename TC, typename TI, typename TO>
386 if (LOCKED) {
387 // locked polyphase (no interpolation)
AudioResamplerDyn.cpp 481 // check if locked phase (works only if mPhaseIncrement has no "fractional phase bits")
482 int locked = (mPhaseIncrement << (sizeof(mPhaseIncrement)*8 - c.mShift)) == 0; local
483 if (locked) {
498 if (locked) {
555 mChannelCount, locked ? "locked" : "interpolated",
568 template<int CHANNELS, bool LOCKED, int STRIDE>
657 fir<CHANNELS, LOCKED, STRIDE>(
  /frameworks/av/services/camera/libcameraservice/api1/client2/
ZslProcessor.h 101 LOCKED
ZslProcessor.cpp 584 mState = LOCKED;
657 if (mState == LOCKED) return OK;
757 * - ensure that aeState is either converged or locked
  /packages/apps/Contacts/src/com/android/contacts/interactions/
SmsInteraction.java 120 return mValues.getAsBoolean(Sms.LOCKED);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
minitape.h 134 UCHAR LOCKED : 1;
  /test/vts/proto/
VtsFuzzTaskMessage_pb2.py 32 name='LOCKED', index=1, number=1,
78 LOCKED = 1
  /frameworks/base/keystore/java/android/security/
KeyStore.java 61 public static final int LOCKED = 2;
131 public enum State { UNLOCKED, LOCKED, UNINITIALIZED };
178 case LOCKED: return State.LOCKED;
284 * @return whether {@code user}'s keystore was locked.
812 case LOCKED:
851 case LOCKED:
    [all...]
  /system/security/keystore/
blob.cpp 218 return ResponseCode::LOCKED;
276 if (state == STATE_LOCKED) return ResponseCode::LOCKED;
  /device/generic/goldfish/gralloc/
framebuffer.cpp 54 LOCKED = 0x00000002
  /hardware/libhardware/modules/gralloc/
framebuffer.cpp 54 LOCKED = 0x00000002

Completed in 456 milliseconds

1 2 3