Home | History | Annotate | Download | only in pm

Lines Matching defs:packagePath

1202         final File packagePath = new File(getUserBitmapFilePath(userId), packageName);
1203 if (!packagePath.isDirectory()) {
1206 if (!(FileUtils.deleteContents(packagePath) && packagePath.delete())) {
1207 Slog.w(TAG, "Unable to remove directory " + packagePath);
1285 final File packagePath = new File(getUserBitmapFilePath(userId),
1287 if (!packagePath.isDirectory()) {
1288 packagePath.mkdirs();
1289 if (!packagePath.isDirectory()) {
1290 throw new IOException("Unable to create directory " + packagePath);
1292 SELinux.restorecon(packagePath);
1298 final File file = new File(packagePath, filename);