Home
last modified time | relevance | path

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

/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/
DUninstallFinish.java101 UserHandle otherBlockingUserHandle = null; in onReceive() local
112 otherBlockingUserHandle = otherUserHandle; in onReceive()
116 if (otherBlockingUserHandle == null) { in onReceive()
125 + " is a device admin of user " + otherBlockingUserHandle); in onReceive()
128 context.createContextAsUser(otherBlockingUserHandle, 0) in onReceive()
139 UserHandle otherBlockingUserHandle = null; in onReceive() local
143 otherBlockingUserHandle = handle; in onReceive()
149 if (isProfileOfOrSame(userManager, myUserHandle, otherBlockingUserHandle)) { in onReceive()
155 if (otherBlockingUserHandle == null) { in onReceive()
159 } else if (otherBlockingUserHandle == UserHandle.SYSTEM) { in onReceive()
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/television/
DUninstallAppProgress.java149 UserHandle otherBlockingUserHandle = null; in handleMessage() local
159 otherBlockingUserHandle = otherUserHandle; in handleMessage()
163 if (otherBlockingUserHandle == null) { in handleMessage()
171 + " is a device admin of user " + otherBlockingUserHandle); in handleMessage()
173 String userName = ctx.createContextAsUser(otherBlockingUserHandle, 0) in handleMessage()
186 UserHandle otherBlockingUserHandle = null; in handleMessage() local
190 otherBlockingUserHandle = handle; in handleMessage()
195 if (isProfileOfOrSame(userManager, myUserHandle, otherBlockingUserHandle)) { in handleMessage()
202 if (otherBlockingUserHandle == UserHandle.SYSTEM) { in handleMessage()
204 } else if (otherBlockingUserHandle == null) { in handleMessage()
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/v2/model/
DUninstallRepository.kt498 val otherBlockingUserHandle = in handleUninstallResult() constant
500 if (otherBlockingUserHandle == null) { in handleUninstallResult()
517 " is a device admin of user $otherBlockingUserHandle" in handleUninstallResult()
519 val userName = context.createContextAsUser(otherBlockingUserHandle, 0) in handleUninstallResult()
534 val otherBlockingUserHandle = findBlockingUser(targetPackageName!!) in handleUninstallResult() constant
538 otherBlockingUserHandle in handleUninstallResult()
546 if (otherBlockingUserHandle == null) { in handleUninstallResult()
552 } else if (otherBlockingUserHandle === UserHandle.SYSTEM) { in handleUninstallResult()