HomeSort by relevance Sort by last modified time
    Searched refs:KEY_STATUS (Results 1 - 13 of 13) sorted by null

  /frameworks/base/core/java/android/os/
SystemUpdateManager.java 38 public static final String KEY_STATUS = "status";
57 * The KEY_STATUS value that indicates there's no update status info available.
63 * The KEY_STATUS value that indicates there's no pending update.
69 * The KEY_STATUS value that indicates an update is available for download, but pending user
76 * The KEY_STATUS value that indicates an update is in progress (i.e. downloading or installing
83 * The KEY_STATUS value that indicates an update is available for install.
89 * The KEY_STATUS value that indicates an update will be installed after a reboot. This applies
135 * such as the current update status. {@link #KEY_STATUS} is required in the bundle.
137 * @throws IllegalArgumentException if @link #KEY_STATUS} does not exist.
143 if (infoBundle == null || !infoBundle.containsKey(KEY_STATUS)) {
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/system/
SystemUpdatePreferenceControllerTest.java 18 import static android.os.SystemUpdateManager.KEY_STATUS;
134 bundle.putInt(KEY_STATUS, STATUS_UNKNOWN);
148 bundle.putInt(KEY_STATUS, STATUS_IDLE);
161 bundle.putInt(KEY_STATUS, STATUS_WAITING_DOWNLOAD);
  /frameworks/base/services/core/java/com/android/server/
SystemUpdateManagerService.java 19 import static android.os.SystemUpdateManager.KEY_STATUS;
91 int status = infoBundle.getInt(KEY_STATUS, STATUS_UNKNOWN);
173 int lastStatus = infoBundle.getInt(KEY_STATUS, STATUS_UNKNOWN);
197 mLastStatus = infoBundle.getInt(KEY_STATUS);
248 infoBundle.putInt(KEY_STATUS, STATUS_UNKNOWN);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ProcessDeliveryReportAction.java 42 private static final String KEY_STATUS = "status";
46 actionParameters.putInt(KEY_STATUS, status);
57 final int status = actionParameters.getInt(KEY_STATUS);
ProcessSentMessageAction.java 73 private static final String KEY_STATUS = "status";
110 params.putInt(KEY_STATUS, status);
133 int status = actionParameters.getInt(KEY_STATUS, MmsUtils.MMS_REQUEST_MANUAL_RETRY);
ProcessDownloadedMmsAction.java 83 private static final String KEY_STATUS = "status";
175 params.putInt(KEY_STATUS, status);
312 status = actionParameters.getInt(KEY_STATUS);
  /cts/hostsidetests/media/bitstreams/common/src/android/media/cts/bitstreams/
MediaBitstreams.java 48 public static final String KEY_STATUS = "status";
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsCallForwardOptions.java 33 private static final String KEY_STATUS = "status";
115 cf.status = bundle.getInt(KEY_STATUS);
134 bundle.putInt(KEY_STATUS, pref.callForwardInfo.status);
GsmUmtsCallBarringOptions.java 74 private static final String KEY_STATUS = "toggle";
444 pref.handleCallBarringResult(bundle.getBoolean(KEY_STATUS));
486 bundle.putBoolean(KEY_STATUS, pref.mIsActivated);
  /packages/apps/Settings/src/com/android/settings/system/
SystemUpdatePreferenceController.java 103 switch (updateInfo.getInt(SystemUpdateManager.KEY_STATUS)) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
TextToSpeechFragment.java 68 private static final String KEY_STATUS = "tts_status";
162 mEngineStatus = findPreference(KEY_STATUS);
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 145 private static final String KEY_STATUS = "status";
492 mStatus = savedState.getInt(KEY_STATUS);
610 outState.putInt(KEY_STATUS, mStatus);
    [all...]
  /cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
MediaBitstreamsTest.java 266 report.addValue(MediaBitstreams.KEY_STATUS, s, ResultType.NEUTRAL, ResultUnit.NONE);

Completed in 373 milliseconds