Searched refs:instantAppDir (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/services/core/java/com/android/server/pm/ |
D | InstantAppRegistry.java | 296 File instantAppDir = getInstantApplicationDir(pkg.getPackageName(), userId); in onPackageInstalledLPw() local 297 new File(instantAppDir, INSTANT_APP_METADATA_FILE).delete(); in onPackageInstalledLPw() 298 new File(instantAppDir, INSTANT_APP_ICON_FILE).delete(); in onPackageInstalledLPw() 560 File instantAppDir = getInstantApplicationDir(packageName, userId); in deleteInstantApplicationMetadataLPw() local 561 new File(instantAppDir, INSTANT_APP_METADATA_FILE).delete(); in deleteInstantApplicationMetadataLPw() 562 new File(instantAppDir, INSTANT_APP_ICON_FILE).delete(); in deleteInstantApplicationMetadataLPw() 563 new File(instantAppDir, INSTANT_APP_ANDROID_ID_FILE).delete(); in deleteInstantApplicationMetadataLPw() 619 final File instantAppDir = getInstantApplicationDir(packageName, userId); in hasInstantAppMetadataLPr() local 620 return new File(instantAppDir, INSTANT_APP_METADATA_FILE).exists() in hasInstantAppMetadataLPr() 621 || new File(instantAppDir, INSTANT_APP_ICON_FILE).exists() in hasInstantAppMetadataLPr() [all …]
|