Searched refs:resPkg (Results 1 – 3 of 3) sorted by relevance
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
D | Util.kt | 67 val resPkg: String? = resources?.getResourcePackageName(res) in getResourceUri() constant 70 return makeResourceUri(appPkg, resPkg, type, name) in getResourceUri() 73 private fun makeResourceUri(appPkg: String?, resPkg: String?, type: String?, name: String?): Uri { in makeResourceUri() 78 if (appPkg != resPkg) { in makeResourceUri() 79 uriBuilder.appendEncodedPath("$resPkg:$name") in makeResourceUri()
|
/packages/modules/AppSearch/service/java/com/android/server/appsearch/appsindexer/ |
D | AppsUtil.java | 61 String resPkg = resources.getResourcePackageName(resourceId); in getResourceUri() local 63 return makeResourceUri(appInfo.packageName, resPkg, type, resourceId); in getResourceUri() 75 @NonNull String appPkg, @NonNull String resPkg, @NonNull String type, int resourceId) { in makeResourceUri() argument 77 Objects.requireNonNull(resPkg); in makeResourceUri() 86 if (!appPkg.equals(resPkg)) { in makeResourceUri() 87 uriBuilder.appendEncodedPath(resPkg + ":" + resourceId); in makeResourceUri()
|
/packages/modules/Connectivity/service/src/com/android/server/connectivity/ |
D | ConnectivityResources.java | 69 final String resPkg = DeviceConfigUtils.getConnectivityResourcesPackageName(mContext); in getResourcesContext() local 72 pkgContext = mContext.createPackageContext(resPkg, 0 /* flags */); in getResourcesContext()
|