HomeSort by relevance Sort by last modified time
    Searched refs:zipFile (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/webkit/Tools/Scripts/
update-webkit-auxiliary-libs 36 my $zipFile = "$file.zip";
37 my $auxiliaryLibsURL = "http://developer.apple.com/opensource/internet/$zipFile";
update-webkit-wincairo-libs 36 my $zipFile = "$file.zip";
37 my $winCairoLibsURL = "http://idisk.mac.com/bfulgham-Public/$zipFile";
update-webkit-dependency 49 * If filename is requirements.zip and the contents of the zipfile are "requirements/x" then prefix = "."
50 * If filename is xyz.zip and the contents of the zipfile are xyz/abc/x" then prefix = "abc"
69 my $zipFile = "$file.zip";
74 print "Checking Last-Modified date of $zipFile...\n";
79 print STDERR "Couldn't check Last-Modified date of new $zipFile.\n";
105 print "Downloading $zipFile...\n\n";
106 $result = system "curl -o \"$tmpAbsDir/$zipFile\" $libsURL";
107 die "Couldn't download $zipFile!" if $result;
109 $result = system "unzip", "-q", "-d", $tmpAbsDir, "$tmpAbsDir/$zipFile";
110 die "Couldn't unzip $zipFile." if $result
    [all...]
update-webkit-support-libs 46 my $zipFile = "$file.zip";
48 my $pathToZip = File::Spec->catfile($zipDirectory, $zipFile);
67 dieAndInstructToDownload("$zipFile could not be found in $zipDirectory.") if $zipFileVersion eq NOTAVERSION;
68 dieAndInstructToDownload("$zipFile is out-of-date.") if $expectedVersion ne NOTAVERSION && $zipFileVersion ne $expectedVersion;
75 die "Couldn't unzip $zipFile." if $result;
136 Please download $zipFile from:
  /external/zlib/src/contrib/minizip/
zip.h 67 typedef zipFile__ *zipFile;
69 typedef voidp zipFile;
116 extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
117 extern zipFile ZEXPORT zipOpen64 OF((const void *pathname, int append));
119 Create a zipfile.
127 If the zipfile cannot be opened, the return value is NULL.
128 Else, the return value is a zipFile Handle, usable with other function
132 /* Note : there is no delete function into a zipfile.
133 If you want delete file into a zipfile, you must open a zipfile, and create anothe
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipFileTest.java 26 import java.util.zip.ZipFile;
32 * Basic tests for ZipFile.
101 ZipFile zipFile = new ZipFile(fileName);
105 // System.out.println("Contents of " + zipFile + ":");
106 for (fileList = zipFile.entries(); fileList.hasMoreElements();) {
113 zipFile.close();
124 ZipFile zipFile;
    [all...]
ZipFileTest.java 29 import java.util.zip.ZipFile;
45 ZipFile zipFile = new ZipFile(createZipFile(originalSize));
46 for (Enumeration<? extends ZipEntry> e = zipFile.entries(); e.hasMoreElements(); ) {
50 InputStream is = zipFile.getInputStream(zipEntry);
54 zipFile.close();
93 ZipFile zipFile = new ZipFile(f)
    [all...]
ZipEntryTest.java 26 import java.util.zip.ZipFile;
50 ZipFile zipFile = new ZipFile(f);
52 assertNotNull(filename, zipFile.getEntry(filename));
  /tools/motodev/src/plugins/logger.collector/src/com/motorola/studio/android/logger/collector/util/
ZipUtil.java 27 import java.util.zip.ZipFile;
154 zipFile(fileList[i]);
166 private void zipFile(File file) throws IOException
206 File zipFile = new File(zipFilePath);
208 ZipFile zip = new ZipFile(zipFile);
225 * @param zipFile The zip file
230 private static void unzipEntry(ZipFile zipFile, ZipEntry zipEntry, File folder)
    [all...]
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 146 sumFiles(JNIEnv* env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
151 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
166 copyFileIfChanged(JNIEnv *env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
176 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
229 if (!zipFile->uncompressEntry(zipEntry, fd)) {
276 ZipFileRO zipFile;
278 if (zipFile.open(filePath.c_str()) != NO_ERROR) {
283 const int N = zipFile.getNumEntries();
289 const ZipEntryRO entry = zipFile.findEntryByIndex(i);
295 if (zipFile.getEntryFileName(entry, fileName, sizeof(fileName)))
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 26 import java.util.zip.ZipFile;
117 ZipFile zipFile;
123 zipFile = new ZipFile(fileName);
139 ZipEntry entry = zipFile.getEntry(CLASSES_DEX);
143 zipFile.close();
147 InputStream zis = zipFile.getInputStream(entry);
  /build/tools/zipalign/
ZipAlign.cpp 20 #include "ZipFile.h"
47 static int copyAndAlign(ZipFile* pZin, ZipFile* pZout, int alignment)
103 ZipFile zin, zout;
120 if (zin.open(inFileName, ZipFile::kOpenReadOnly) != NO_ERROR) {
125 ZipFile::kOpenReadWrite|ZipFile::kOpenCreate|ZipFile::kOpenTruncate)
145 ZipFile zipFile;
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
DexPathList.java 27 import java.util.zip.ZipFile;
203 ZipFile zip = null;
217 zip = new ZipFile(file);
221 * might get thrown by the ZipFile constructor
389 public final ZipFile zipFile;
392 public Element(File file, ZipFile zipFile, DexFile dexFile) {
394 this.zipFile = zipFile;
    [all...]
  /frameworks/base/test-runner/src/junit/runner/
TestCaseClassLoader.java 158 ZipFile zipFile= null;
164 zipFile= new ZipFile(archive);
168 ZipEntry entry= zipFile.getEntry(fileName);
173 stream= zipFile.getInputStream(entry);
180 zipFile.close();
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/utilities/
FileUtil.java 45 import java.util.zip.ZipFile;
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
VMHostTest.java 27 import java.util.zip.ZipFile;
78 ZipFile zipFile = new ZipFile(jarFile);
79 FileUtil.extractZip(zipFile, localTmpDir);
  /external/chromium/chrome/common/
zip.cc 204 static bool AddFileToZip(zipFile zip_file, const FilePath& src_dir) {
229 static bool AddEntryToZip(zipFile zip_file, const FilePath& path,
278 zipFile zip_file = zipOpen(dest_file_str.c_str(), APPEND_STATUS_CREATE);
281 zipFile zip_file = zipOpen2(dest_file_str.c_str(), APPEND_STATUS_CREATE,
  /tools/build/builder/src/main/java/com/android/builder/packaging/
Packager.java 320 * @param zipFile the zip File.
326 void addZipFile(File zipFile) throws PackagerException, SealedPackageException,
333 mLogger.verbose("%s:", zipFile);
336 mNullFilter.reset(zipFile);
339 FileInputStream fis = new FileInputStream(zipFile);
346 throw new PackagerException(e, "Failed to add %s", zipFile);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DexFile.java 42 import java.util.zip.ZipFile;
297 ZipFile zipFile = null;
302 zipFile = new ZipFile(file);
303 ZipEntry zipEntry = zipFile.getEntry("classes.dex");
315 inputStream = new BufferedInputStream(zipFile.getInputStream(zipEntry));
383 if (zipFile != null) {
384 zipFile.close();
    [all...]
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/dialogs/
RestoreBackupDialog.java 24 import java.util.zip.ZipFile;
277 ZipFile zipFile = null;
280 zipFile = new ZipFile(archiveFile, ZipFile.OPEN_READ);
281 ArrayList<String> keyStores = new ArrayList<String>(zipFile.size());
283 Enumeration<? extends ZipEntry> entries = zipFile.entries();
319 if (zipFile != null)
323 zipFile.close();
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/internal/utils/
ApkUtils.java 219 * Unzip zipFile and returns the directory created with its contents
220 * @param zipFile
224 public static File unzip(File zipFile) throws PreflightingToolException
238 tempExtractionDir = File.createTempFile(zipFile.getName(), null, tmpAppValidatorFolder);
242 //open zipFile stream
243 apkInputStream = new ZipInputStream(new FileInputStream(zipFile.getAbsolutePath()));
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 32 import java.util.zip.ZipFile;
251 ZipFile zipFile = new ZipFile(jarFile);
252 Enumeration<? extends ZipEntry> entries = zipFile.entries();
  /sdk/assetstudio/src/com/android/assetstudiolib/
GraphicGenerator.java 39 import java.util.zip.ZipFile;
270 final ZipFile zipFile = new JarFile(file);
271 Enumeration<? extends ZipEntry> enumeration = zipFile.entries();
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/command/
BackupHandler.java 157 private void createZipArchive(File zipFile, List<String> filePaths) throws IOException,
164 zos = new ZipOutputStream(new FileOutputStream(zipFile));
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
ApkBuilder.java 520 * @param zipFile the zip File.
526 public void addZipFile(File zipFile) throws ApkCreationException, SealedApkException,
533 verbosePrintln("%s:", zipFile);
536 mNullFilter.reset(zipFile);
539 FileInputStream fis = new FileInputStream(zipFile);
546 throw new ApkCreationException(e, "Failed to add %s", zipFile);
    [all...]

Completed in 956 milliseconds

1 2 3