Searched defs:targetDir (Results 1 - 2 of 2) sorted by relevance

/libcore/tzdata/update/src/main/libcore/tzdata/update/
H A DConfigBundle.java57 public void extractTo(File targetDir) throws IOException { argument
58 extractZipSafely(new ByteArrayInputStream(bytes), targetDir, true /* makeWorldReadable */);
62 static void extractZipSafely(InputStream is, File targetDir, boolean makeWorldReadable) argument
66 FileUtils.ensureDirectoriesExist(targetDir, makeWorldReadable);
73 // targetDir.
76 // that might invalidate the guarantees about name existing beneath targetDir.
77 File entryFile = FileUtils.createSubFile(targetDir, name);
H A DTzDataBundleInstaller.java96 private File unpackBundle(byte[] content, File targetDir) throws IOException { argument
97 Slog.i(logTag, "Unpacking update content to: " + targetDir);
99 bundle.extractTo(targetDir);
100 return targetDir;

Completed in 90 milliseconds