Home
last modified time | relevance | path

Searched refs:existingState (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/pm/verify/domain/
H A DDomainVerificationSettings.java116 DomainVerificationPkgState existingState = liveState.get(pkgName); in readSettings() local
117 if (existingState != null) { in readSettings()
120 if (!existingState.getId().equals(pkgState.getId())) { in readSettings()
121 mergePkgState(existingState, pkgState, snapshot); in readSettings()
159 DomainVerificationPkgState existingState = liveState.get(pkgName); in restoreSettings() local
160 if (existingState == null) { in restoreSettings()
161 existingState = mPendingPkgStates.get(pkgName); in restoreSettings()
163 if (existingState == null) { in restoreSettings()
164 existingState = mRestoredPkgStates.get(pkgName); in restoreSettings()
167 if (existingState != null) { in restoreSettings()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/
H A DDreamOverlayStateController.java288 final int existingState = mState; in modifyState() local
298 if (existingState != mState) { in modifyState()
/aosp14/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java3039 final ObbState existingState; in unmountObb() local
3041 existingState = mObbPathToStateMap.get(rawPath); in unmountObb()
3044 if (existingState != null) { in unmountObb()
3048 callingUid, token, nonce, existingState.volId); in unmountObb()
4298 final ObbState existingState; in handleExecute() local
4300 existingState = mObbPathToStateMap.get(mObbState.rawPath); in handleExecute()
4303 if (existingState == null) { in handleExecute()
4307 if (existingState.ownerGid != mObbState.ownerGid) { in handleExecute()
4309 "Permission denied to unmount OBB " + existingState.rawPath in handleExecute()
4310 + " (owned by GID " + existingState.ownerGid + ")")); in handleExecute()
[all …]