Home | History | Annotate | Download | only in settings

Lines Matching full:progress

71  *     -e "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW" "progress" \
80 /** Message sent to us to indicate encryption update progress. */
98 private static final String FORCE_VIEW_PROGRESS = "progress";
343 final String progress = SystemProperties.get("vold.encrypt_progress");
344 if (!"".equals(progress) || isDebugView(FORCE_VIEW_PROGRESS)) {
396 Log.d(TAG, "Encryption progress screen initializing.");
407 // Start the first run of progress manually. This method sets up messages to occur at
446 int progress = 0;
448 // Force a 50% progress state when debugging the view.
449 progress = isDebugView() ? 50 : Integer.parseInt(state);
451 Log.w(TAG, "Error parsing progress: " + e.toString());
455 Log.v(TAG, "Encryption progress: " + progress);
458 tv.setText(TextUtils.expandTemplate(status, Integer.toString(progress)));
460 // Check the progress every 5 seconds