HomeSort by relevance Sort by last modified time
    Searched defs:publicZipFile (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 389 File publicZipFile = new File(newCachePath, publicResFileName);
391 PackageHelper.extractPublicFiles(resFile.getAbsolutePath(), publicZipFile);
393 Slog.i(TAG, "Copied resources to " + publicZipFile);
396 Slog.e(TAG, "Could not chown public APK " + publicZipFile.getAbsolutePath() + ": "
403 Libcore.os.chmod(publicZipFile.getAbsolutePath(), 0644);
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 210 public static int extractPublicFiles(String packagePath, File publicZipFile)
215 if (publicZipFile == null) {
219 fstr = new FileOutputStream(publicZipFile);
235 if (publicZipFile != null) {
244 if (publicZipFile != null) {
249 FileUtils.setPermissions(publicZipFile.getAbsolutePath(), FileUtils.S_IRUSR

Completed in 40 milliseconds