Home
last modified time | relevance | path

Searched refs:mConfigChanges (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/app/servertransaction/
DDestroyActivityItem.java33 private int mConfigChanges; field in DestroyActivityItem
44 client.handleDestroyActivity(token, mFinished, mConfigChanges, in execute()
66 instance.mConfigChanges = configChanges; in obtain()
75 mConfigChanges = 0; in recycle()
86 dest.writeInt(mConfigChanges); in writeToParcel()
92 mConfigChanges = in.readInt(); in DestroyActivityItem()
115 return mFinished == other.mFinished && mConfigChanges == other.mConfigChanges; in equals()
122 result = 31 * result + mConfigChanges; in hashCode()
129 + mConfigChanges + "}"; in toString()
DStopActivityItem.java35 private int mConfigChanges; field in StopActivityItem
41 client.handleStopActivity(token, mShowWindow, mConfigChanges, pendingActions, in execute()
69 instance.mConfigChanges = configChanges; in obtain()
78 mConfigChanges = 0; in recycle()
89 dest.writeInt(mConfigChanges); in writeToParcel()
95 mConfigChanges = in.readInt(); in StopActivityItem()
118 return mShowWindow == other.mShowWindow && mConfigChanges == other.mConfigChanges; in equals()
125 result = 31 * result + mConfigChanges; in hashCode()
131 return "StopActivityItem{showWindow=" + mShowWindow + ",configChanges=" + mConfigChanges in toString()
DPauseActivityItem.java39 private int mConfigChanges; field in PauseActivityItem
46 client.handlePauseActivity(token, mFinished, mUserLeaving, mConfigChanges, pendingActions, in execute()
84 instance.mConfigChanges = configChanges; in obtain()
98 instance.mConfigChanges = 0; in obtain()
109 mConfigChanges = 0; in recycle()
121 dest.writeInt(mConfigChanges); in writeToParcel()
129 mConfigChanges = in.readInt(); in PauseActivityItem()
154 && mConfigChanges == other.mConfigChanges && mDontReport == other.mDontReport; in equals()
162 result = 31 * result + mConfigChanges; in hashCode()
170 + ",configChanges=" + mConfigChanges + ",dontReport=" + mDontReport + "}"; in toString()
DActivityRelaunchItem.java45 private int mConfigChanges; field in ActivityRelaunchItem
58 mPendingNewIntents, mConfigChanges, mConfig, mPreserveWindow); in preExecute()
93 instance.mConfigChanges = configChanges; in obtain()
104 mConfigChanges = 0; in recycle()
119 dest.writeInt(mConfigChanges); in writeToParcel()
128 mConfigChanges = in.readInt(); in ActivityRelaunchItem()
155 && mConfigChanges == other.mConfigChanges && Objects.equals(mConfig, other.mConfig) in equals()
164 result = 31 * result + mConfigChanges; in hashCode()
173 + ",pendingNewIntents=" + mPendingNewIntents + ",configChanges=" + mConfigChanges in toString()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialogComponent.java60 private final InterestingConfigChanges mConfigChanges = new InterestingConfigChanges( field in VolumeDialogComponent
149 if (mConfigChanges.applyNewConfig(mContext.getResources())) { in onConfigurationChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/fragments/
DFragmentHostManager.java55 private final InterestingConfigChanges mConfigChanges = new InterestingConfigChanges( field in FragmentHostManager
69 mConfigChanges.applyNewConfig(mContext.getResources()); in FragmentHostManager()
158 if (mConfigChanges.applyNewConfig(mContext.getResources())) { in onConfigurationChanged()