Home
last modified time | relevance | path

Searched refs:makeWorldReadable (Results 1 – 2 of 2) sorted by relevance

/system/timezone/distro/core/src/main/com/android/timezone/distro/
DTimeZoneDistro.java130 static void extractZipSafely(InputStream is, File targetDir, boolean makeWorldReadable) in extractZipSafely() argument
134 FileUtils.ensureDirectoriesExist(targetDir, makeWorldReadable); in extractZipSafely()
148 FileUtils.ensureDirectoriesExist(entryFile, makeWorldReadable); in extractZipSafely()
153 entryFile.getParentFile(), makeWorldReadable); in extractZipSafely() local
165 if (makeWorldReadable) { in extractZipSafely()
166 FileUtils.makeWorldReadable(entryFile); in extractZipSafely()
DFileUtils.java62 public static void ensureDirectoriesExist(File dir, boolean makeWorldReadable) in ensureDirectoriesExist() argument
76 if (makeWorldReadable) { in ensureDirectoriesExist()
89 makeWorldReadable(directory); in makeDirectoryWorldAccessible()
95 public static void makeWorldReadable(File file) throws IOException { in makeWorldReadable() method in FileUtils