Home | History | Annotate | Download | only in browser

Lines Matching full:state

89                         Log.v(LOGTAG, "Saving crash recovery state");
93 Bundle state = (Bundle) msg.obj;
94 state.writeToParcel(p, 0);
109 Log.i(LOGTAG, "Failed to save persistent state", e);
116 Log.v(LOGTAG, "Clearing crash recovery state");
118 File state = new File(mContext.getCacheDir(), STATE_FILE);
119 if (state.exists()) {
120 state.delete();
145 final Bundle state = new Bundle();
146 mController.onSaveInstanceState(state);
147 Message.obtain(mBackgroundHandler, MSG_WRITE_STATE, state)
152 Log.w(LOGTAG, "Failed to save state", t);
187 Bundle state = null;
202 state = parcel.readBundle();
203 if (state != null && !state.isEmpty()) {
204 return state;
207 // No state to recover
209 Log.w(LOGTAG, "Failed to recover state!", e);