Loading src/com/android/settings/CryptKeeper.java +12 −4 Original line number Diff line number Diff line Loading @@ -235,6 +235,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList if (lastInstance instanceof NonConfigurationInstanceState) { NonConfigurationInstanceState retained = (NonConfigurationInstanceState) lastInstance; mWakeLock = retained.wakelock; Log.d(TAG, "Restoring wakelock from NonConfigurationInstanceState"); } } Loading Loading @@ -276,6 +277,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList @Override public Object onRetainNonConfigurationInstance() { NonConfigurationInstanceState state = new NonConfigurationInstanceState(mWakeLock); Log.d(TAG, "Handing wakelock off to NonConfigurationInstanceState"); mWakeLock = null; return state; } Loading @@ -285,6 +287,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList super.onDestroy(); if (mWakeLock != null) { Log.d(TAG, "Releasing and destroying wakelock"); mWakeLock.release(); mWakeLock = null; } Loading @@ -295,10 +298,13 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList // we never release this wakelock as we will be restarted after the device // is encrypted. Log.d(TAG, "Encryption progress screen initializing."); if (mWakeLock != null) { Log.d(TAG, "Acquiring wakelock."); PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG); mWakeLock.acquire(); } ProgressBar progressBar = (ProgressBar) findViewById(R.id.progress_bar); progressBar.setIndeterminate(true); Loading Loading @@ -349,6 +355,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList } CharSequence status = getText(R.string.crypt_keeper_setup_description); Log.v(TAG, "Encryption progress: " + progress); TextView tv = (TextView) findViewById(R.id.status); tv.setText(TextUtils.expandTemplate(status, Integer.toString(progress))); Loading Loading @@ -418,6 +425,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList // cooldown period. mPasswordEntry.setEnabled(false); Log.d(TAG, "Attempting to send command to decrypt"); new DecryptTask().execute(password); return true; Loading Loading
src/com/android/settings/CryptKeeper.java +12 −4 Original line number Diff line number Diff line Loading @@ -235,6 +235,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList if (lastInstance instanceof NonConfigurationInstanceState) { NonConfigurationInstanceState retained = (NonConfigurationInstanceState) lastInstance; mWakeLock = retained.wakelock; Log.d(TAG, "Restoring wakelock from NonConfigurationInstanceState"); } } Loading Loading @@ -276,6 +277,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList @Override public Object onRetainNonConfigurationInstance() { NonConfigurationInstanceState state = new NonConfigurationInstanceState(mWakeLock); Log.d(TAG, "Handing wakelock off to NonConfigurationInstanceState"); mWakeLock = null; return state; } Loading @@ -285,6 +287,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList super.onDestroy(); if (mWakeLock != null) { Log.d(TAG, "Releasing and destroying wakelock"); mWakeLock.release(); mWakeLock = null; } Loading @@ -295,10 +298,13 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList // we never release this wakelock as we will be restarted after the device // is encrypted. Log.d(TAG, "Encryption progress screen initializing."); if (mWakeLock != null) { Log.d(TAG, "Acquiring wakelock."); PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG); mWakeLock.acquire(); } ProgressBar progressBar = (ProgressBar) findViewById(R.id.progress_bar); progressBar.setIndeterminate(true); Loading Loading @@ -349,6 +355,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList } CharSequence status = getText(R.string.crypt_keeper_setup_description); Log.v(TAG, "Encryption progress: " + progress); TextView tv = (TextView) findViewById(R.id.status); tv.setText(TextUtils.expandTemplate(status, Integer.toString(progress))); Loading Loading @@ -418,6 +425,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList // cooldown period. mPasswordEntry.setEnabled(false); Log.d(TAG, "Attempting to send command to decrypt"); new DecryptTask().execute(password); return true; Loading