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

1 2

  /packages/apps/OMA-DM/DMService/src/com/android/omadm/service/
DMSettingsHelper.java 36 public static final String LOCKED = "locked";
  /system/security/keystore/include/keystore/
keystore.h 31 LOCKED = STATE_LOCKED, // 2
  /pdk/apps/CameraITS/tests/scene1/
test_ae_precapture_trigger.py 27 LOCKED = 3
  /frameworks/av/services/audioflinger/
AudioResamplerDyn.h 113 template<int CHANNELS, bool LOCKED, int STRIDE>
AudioResamplerFirProcess.h 173 * ProcessL() calls ProcessBase() with TFUNC = InterpNull, for fixed/locked phase.
336 template<int CHANNELS, bool LOCKED, int STRIDE, typename TC, typename TI, typename TO>
348 if (LOCKED) {
349 // locked polyphase (no interpolation)
AudioResamplerDyn.cpp 400 // check if locked phase (works only if mPhaseIncrement has no "fractional phase bits")
401 int locked = (mPhaseIncrement << (sizeof(mPhaseIncrement)*8 - c.mShift)) == 0; local
402 if (locked) {
417 if (locked) {
474 mChannelCount, locked ? "locked" : "interpolated",
487 template<int CHANNELS, bool LOCKED, int STRIDE>
574 fir<CHANNELS, LOCKED, STRIDE>(
  /frameworks/av/services/camera/libcameraservice/api1/client2/
ZslProcessor.h 82 LOCKED
ZslProcessor3.h 89 LOCKED
ZslProcessor.cpp 372 mState = LOCKED;
383 if (mState == LOCKED) return OK;
458 if (mState == LOCKED) {
ZslProcessor3.cpp 427 mState = LOCKED;
436 if (mState == LOCKED) return OK;
527 * - ensure that aeState is either converged or locked
  /frameworks/base/keystore/java/android/security/
KeyStore.java 37 public static final int LOCKED = 2;
55 public enum State { UNLOCKED, LOCKED, UNINITIALIZED };
94 case LOCKED: return State.LOCKED;
  /external/chromium_org/ui/keyboard/resources/elements/
kb-shift-key.js 9 * Unlocked is the default state. Locked for capslocked, pressed is a
16 LOCKED: "locked", // Key is capslocked.
100 case KEY_STATES.LOCKED:
128 if (state == KEY_STATES.LOCKED) {
133 state = KEY_STATES.LOCKED;
150 state = KEY_STATES.LOCKED;
193 case(KEY_STATES.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 27 /** An eccentric value for locked synchronizer state. */
28 static final int LOCKED = (1 << 31) | (1 << 15);
34 assertTrue(state == UNLOCKED || state == LOCKED);
35 return state == LOCKED;
39 assertEquals(LOCKED, acquires);
40 return compareAndSetState(UNLOCKED, LOCKED);
44 if (getState() != LOCKED) throw new IllegalMonitorStateException();
45 assertEquals(LOCKED, releases);
51 return tryAcquireNanos(LOCKED, nanos);
55 return tryAcquire(LOCKED);
    [all...]
AbstractQueuedLongSynchronizerTest.java 24 /** An eccentric value > 32 bits for locked synchronizer state. */
25 static final long LOCKED = (1L << 63) | (1L << 15);
31 assertTrue(state == UNLOCKED || state == LOCKED);
32 return state == LOCKED;
36 assertEquals(LOCKED, acquires);
37 return compareAndSetState(UNLOCKED, LOCKED);
41 if (getState() != LOCKED) throw new IllegalMonitorStateException();
47 return tryAcquireNanos(LOCKED, nanos);
51 return tryAcquire(LOCKED);
55 return tryRelease(LOCKED);
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 65 Sms.LOCKED,
78 Mms.LOCKED,
421 mColumnSmsLocked = cursor.getColumnIndexOrThrow(Sms.LOCKED);
475 mColumnMmsLocked = cursor.getColumnIndexOrThrow(Mms.LOCKED);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
SmsInteraction.java 118 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;
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 72 Mms.LOCKED
108 // Get the locked flag from the M-Notification.ind so it can be transferred
168 // Copy over the locked flag from the M-Notification.ind in case
169 // the user locked the message before activating the download.
294 boolean locked) {
297 values.put(Mms.LOCKED, locked); // preserve the state of the M-Notification.ind lock.
  /hardware/libhardware/modules/gralloc/
framebuffer.cpp 58 LOCKED = 0x00000002
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 594 Mms.LOCKED + " INTEGER DEFAULT 0," +
    [all...]
  /packages/apps/Settings/src/com/android/settings/
CredentialStorage.java 72 * KeyStore: LOCKED
155 case LOCKED: {
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 237 * Is the message locked?
240 public static final String LOCKED = "locked";
    [all...]
  /frameworks/base/keystore/tests/src/android/security/
KeyStoreTest.java 328 assertEquals(KeyStore.State.LOCKED, mKeyStore.state());
359 assertFalse("Should fail when keystore is locked",
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 756 * @param deleteAll Delete the whole thread including locked messages
774 String selection = deleteAll ? null : "locked=0";
789 * @param deleteAll Delete the whole thread including locked messages
802 String selection = deleteAll ? null : "locked=0";
850 * Check for locked messages in all threads or a specified thread.
852 * upon completion of looking for locked messages
    [all...]

Completed in 942 milliseconds

1 2