Home | History | Annotate | Download | only in settings

Lines Matching full:progress

74  *     -e "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW" "progress" \
83 /** Message sent to us to indicate encryption update progress. */
101 private static final String FORCE_VIEW_PROGRESS = "progress";
350 final String progress = SystemProperties.get("vold.encrypt_progress");
351 if (!"".equals(progress) || isDebugView(FORCE_VIEW_PROGRESS)) {
403 Log.d(TAG, "Encryption progress screen initializing.");
414 // Start the first run of progress manually. This method sets up messages to occur at
453 int progress = 0;
455 // Force a 50% progress state when debugging the view.
456 progress = isDebugView() ? 50 : Integer.parseInt(state);
458 Log.w(TAG, "Error parsing progress: " + e.toString());
462 Log.v(TAG, "Encryption progress: " + progress);
465 tv.setText(TextUtils.expandTemplate(status, Integer.toString(progress)));
467 // Check the progress every 5 seconds