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

1 2

  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 37 READY, NOT_READY, DONE, FAILED,
55 case READY:
66 state = State.READY;
  /external/guava/guava/src/com/google/common/collect/
AbstractIterator.java 72 READY,
134 case READY:
145 state = State.READY;
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccCardConstants.java 27 /* NOT_READY means the ICC interface is not ready (eg, radio is off or powering on) */
33 /* READY means ICC is ready to access */
34 public static final String INTENT_VALUE_ICC_READY = "READY";
35 /* IMSI means ICC IMSI is ready in property */
56 * turns to READY
64 READY,
74 || (this == NETWORK_LOCKED) || (this == READY)
  /external/chromium/chrome/browser/chromeos/
audio_mixer.h 22 READY,
55 // Returns READY if we have a valid working connection to the Mixer.
audio_mixer_alsa.cc 118 if (mixer_state_ != READY)
126 if (mixer_state_ != READY)
137 if (mixer_state_ != READY)
152 if (mixer_state_ != READY)
165 if (mixer_state_ != READY)
192 // If we think it's ready, verify it is actually so.
193 if ((mixer_state_ == READY) && (alsa_mixer_ == NULL))
352 mixer_state_ = READY;
366 if (mixer_state_ != READY)
audio_handler.cc 174 if (mixer_state == AudioMixer::READY)
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 79 private static final int READY = 0;
188 status = READY;
190 if (status != READY) {
313 status = READY;
405 if (status == READY && finished && !endOfInput) {
523 if (status != END && status != READY) {
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 40 * Current mode of application: READY to run, RUNNING, or you have already lost. static final
43 private int mMode = READY;
45 public static final int READY = 1;
262 if (mMode == READY | mMode == LOSE) {
350 if (newMode == READY) {
367 * @return the Game state as Running, Ready, Paused, Lose
Snake.java 67 mSnakeView.setMode(SnakeView.READY);
  /development/tools/emulator/system/camera/
EmulatedCameraDevice.h 246 * it's applicable only when camera device is ready to stream frames.
416 READY,
EmulatedCameraDevice.cpp 393 return READY;
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 167 NOT_READY, READY, DONE
186 /** The last successful match, null unless in {@link State#READY}. */
645 state = State.READY;
648 return state == State.READY;
  /external/chromium/chrome/browser/sync/engine/
all_status.cc 92 status_.summary = sync_api::SyncManager::Status::READY;
syncapi.h 672 READY,
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccCardProxy.java 172 setExternalState(State.READY);
216 setExternalState(State.READY);
299 setExternalState(State.READY);
403 case READY: return IccCardConstants.INTENT_VALUE_ICC_READY;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java 80 IccCardConstants.State mSimState = IccCardConstants.State.READY;
214 mSimState = IccCardConstants.State.READY;
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
KeyguardUpdateMonitor.java 82 private IccCardConstants.State mSimState = IccCardConstants.State.READY;
220 state = IccCardConstants.State.READY;
589 handleSimStateChange(new SimArgs(IccCardConstants.State.READY));
KeyguardStatusViewManager.java 449 case READY:
  /frameworks/av/include/media/
SoundPool.h 52 enum sample_state { UNLOADED, LOADING, READY, UNLOADING };
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
CarrierText.java 63 SimNotReady; // SIM is not ready yet. May never be on devices w/o a SIM.
205 case READY:
KeyguardUpdateMonitor.java 92 private IccCardConstants.State mSimState = IccCardConstants.State.READY;
244 state = IccCardConstants.State.READY;
259 // This is required because telephony doesn't return to "READY" after
261 state = IccCardConstants.State.READY;
745 handleSimStateChange(new SimArgs(IccCardConstants.State.READY));
KeyguardViewMediator.java 63 * so that once the screen comes on, it will be ready immediately.
74 * - screen turned off -> reset the keyguard, and show it so it will be ready
404 case READY:
527 * Let us know that the system is ready after startup.
554 // Most services aren't available until the system reaches the ready state, so we
    [all...]
  /frameworks/base/policy/tests/src/com/android/internal/policy/impl/keyguard_obsolete/
LockPatternKeyguardViewTest.java 48 public IccCardConstants.State simState = IccCardConstants.State.READY;
  /frameworks/av/media/libmedia/
SoundPool.cpp 255 // is sample ready?
257 if ((sample == 0) || (sample->state() != Sample::READY)) {
258 ALOGW(" sample %d not READY", sampleID);
536 mState = READY;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java 68 IccCardConstants.State mSimState = IccCardConstants.State.READY;
482 mSimState = IccCardConstants.State.READY;
720 if (mSimState == IccCardConstants.State.READY ||
    [all...]

Completed in 455 milliseconds

1 2