Lines Matching defs:state

217         Bundle state;
544 Bundle state, List<ResultInfo> pendingResults,
554 r.state = state;
1774 Intent intent, ActivityInfo activityInfo, IBinder token, Bundle state,
1780 r.state = state;
1875 if (r.state != null) {
1876 r.state.setClassLoader(cl);
1920 mInstrumentation.callActivityOnCreate(activity, r.state);
1933 if (r.state != null) {
1934 mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state);
1939 mInstrumentation.callActivityOnPostCreate(activity, r.state);
1985 Bundle oldState = r.state;
1997 // retain the current state it has.
2001 // We need to keep around the original state, in case
2003 r.state = oldState;
2441 r.state = null;
2679 Bundle state = null;
2684 // Next have the activity save its current state and managed dialogs...
2686 state = new Bundle();
2687 state.setAllowFds(false);
2688 mInstrumentation.callActivityOnSaveInstanceState(r.activity, state);
2689 r.state = state;
2724 return state;
2748 * than our client -- for the server, stop means to save state and give
2756 Bundle state = null;
2781 "Unable to save state of activity "
2788 // Next have the activity save its current state and managed dialogs...
2790 if (r.state == null) {
2791 state = new Bundle();
2792 state.setAllowFds(false);
2793 mInstrumentation.callActivityOnSaveInstanceState(r.activity, state);
2794 r.state = state;
2796 state = r.state;
2867 r.token, r.state, info.thumbnail, info.description);
3318 // Need to ensure state is saved.
3322 if (r.state == null && !r.stopped && !r.isPreHoneycomb()) {
3323 r.state = new Bundle();
3324 r.state.setAllowFds(false);
3325 mInstrumentation.callActivityOnSaveInstanceState(r.activity, r.state);