Searched refs:instantAppDir (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/services/core/java/com/android/server/pm/ |
D | InstantAppRegistry.java | 293 File instantAppDir = getInstantApplicationDir(pkg.packageName, userId); in onPackageInstalledLPw() local 294 new File(instantAppDir, INSTANT_APP_METADATA_FILE).delete(); in onPackageInstalledLPw() 295 new File(instantAppDir, INSTANT_APP_ICON_FILE).delete(); in onPackageInstalledLPw() 557 File instantAppDir = getInstantApplicationDir(packageName, userId); in deleteInstantApplicationMetadataLPw() local 558 new File(instantAppDir, INSTANT_APP_METADATA_FILE).delete(); in deleteInstantApplicationMetadataLPw() 559 new File(instantAppDir, INSTANT_APP_ICON_FILE).delete(); in deleteInstantApplicationMetadataLPw() 560 new File(instantAppDir, INSTANT_APP_ANDROID_ID_FILE).delete(); in deleteInstantApplicationMetadataLPw() 616 final File instantAppDir = getInstantApplicationDir(packageName, userId); in hasInstantAppMetadataLPr() local 617 return new File(instantAppDir, INSTANT_APP_METADATA_FILE).exists() in hasInstantAppMetadataLPr() 618 || new File(instantAppDir, INSTANT_APP_ICON_FILE).exists() in hasInstantAppMetadataLPr() [all …]
|