Home
last modified time | relevance | path

Searched refs:infoBundle (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/
H A DSystemUpdateManagerService.java90 public void updateSystemUpdateInfo(PersistableBundle infoBundle) { in updateSystemUpdateInfo() argument
93 int status = infoBundle.getInt(KEY_STATUS, STATUS_UNKNOWN); in updateSystemUpdateInfo()
108 saveSystemUpdateInfoLocked(infoBundle, uid); in updateSystemUpdateInfo()
169 if (infoBundle == null) { in loadSystemUpdateInfoLocked()
174 int lastStatus = infoBundle.getInt(KEY_STATUS, STATUS_UNKNOWN); in loadSystemUpdateInfoLocked()
183 return new Bundle(infoBundle); in loadSystemUpdateInfoLocked()
190 outBundle.putPersistableBundle(KEY_INFO_BUNDLE, infoBundle); in saveSystemUpdateInfoLocked()
198 mLastStatus = infoBundle.getInt(KEY_STATUS); in saveSystemUpdateInfoLocked()
247 Bundle infoBundle = new Bundle(); in removeInfoFileAndGetDefaultInfoBundleLocked() local
248 infoBundle.putInt(KEY_STATUS, STATUS_UNKNOWN); in removeInfoFileAndGetDefaultInfoBundleLocked()
[all …]
/aosp14/frameworks/base/core/java/android/os/
H A DSystemUpdateManager.java129 public void updateSystemUpdateInfo(PersistableBundle infoBundle) { in updateSystemUpdateInfo() argument
130 if (infoBundle == null || !infoBundle.containsKey(KEY_STATUS)) { in updateSystemUpdateInfo()
134 mService.updateSystemUpdateInfo(infoBundle); in updateSystemUpdateInfo()