HomeSort by relevance Sort by last modified time
    Searched defs:STATE (Results 1 - 6 of 6) sorted by null

  /packages/apps/Mms/src/com/android/mms/ui/
EditSlideDurationActivity.java 56 // State.
57 private final static String STATE = "state";
76 mState = icicle.getBundle(STATE);
118 outState.putBundle(STATE, mState);
SlideshowEditActivity.java 65 // State.
66 private final static String STATE = "state";
92 // Retrieve previously saved state of this activity.
93 mState = icicle.getBundle(STATE);
175 Log.v(TAG, "Saving state: " + mState);
177 outState.putBundle(STATE, mState);
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionService.java 77 * <li>If the mobile data network is not in the connected state, but it is available,
104 public static final String STATE = "state";
212 // Make sure we register for connection state changes.
279 // Make sure we're no longer listening for connection state changes.
401 TransactionState state = transaction.getState(); local
402 int result = state.getState();
403 intent.putExtra(STATE, result);
411 intent.putExtra(STATE_URI, state.getContentUri());
435 Log.v(TAG, "Transaction state unknown: "
    [all...]
  /external/libxml2/
valid.c 261 * Each xmlValidState represent the validation state associated to the
341 * debug/maintain than a generic NFA -> DFA state based algo. The
345 * this is the content of a saved state for rollbacks
356 unsigned char state; /* ROLLBACK_XXX */ member in struct:_xmlValidState
365 #define STATE ctxt->vstate->state
376 unsigned char state) {
405 * Don't push on the stack a state already here
411 (ctxt->vstateTab[i].state == state))
5772 xmlValidStatePtr state = ctxt->vstate; local
5864 xmlValidStatePtr state = ctxt->vstate; local
5938 xmlValidStatePtr state = ctxt->vstate; local
    [all...]
  /frameworks/base/core/java/android/provider/
Calendar.java 132 * Sync state data.
    [all...]
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm.c 146 phase between application and library. The actual state can be determined
150 The PCM device is in the open state. After the #snd_pcm_open() open call,
151 the device is in this state. Also, when #snd_pcm_hw_params() call fails,
152 then this state is entered to force application calling
175 to determine this state without checking
176 the actual state via #snd_pcm_state() call. You can recover from
177 this state with #snd_pcm_prepare(),
181 The device is in this state when application using the capture mode
185 then the device stays in this state.
188 The device is in this state when application calle
6528 snd_pcm_state_t state = snd_pcm_state(pcm); local
6602 snd_pcm_state_t state = snd_pcm_state(pcm); local
    [all...]

Completed in 359 milliseconds