HomeSort by relevance Sort by last modified time
    Searched defs:archive (Results 1 - 25 of 61) sorted by null

1 2 3

  /libcore/luni/src/test/java/tests/archive/
AllTests.java 18 package tests.archive;
25 TestSuite suite = new TestSuite("All Archive test suites");
27 suite.addTest(org.apache.harmony.archive.tests.java.util.jar.AllTests
29 suite.addTest(org.apache.harmony.archive.tests.java.util.zip.AllTests
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
AllTests.java 18 package org.apache.harmony.archive.tests.java.util.jar;
29 "Suite org.apache.harmony.archive.tests.java.util.jar");
AttributesNameTest.java 18 package org.apache.harmony.archive.tests.java.util.jar;
JarExceptionTest.java 18 package org.apache.harmony.archive.tests.java.util.jar;
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
AllTests.java 18 package org.apache.harmony.archive.tests.java.util.zip;
28 TestSuite suite = new TestSuite("Suite org.apache.harmony.archive.tests.java.util.zip");
DataFormatExceptionTest.java 17 package org.apache.harmony.archive.tests.java.util.zip;
ZipExceptionTest.java 17 package org.apache.harmony.archive.tests.java.util.zip;
CheckedOutputStreamTest.java 18 package org.apache.harmony.archive.tests.java.util.zip;
Adler32Test.java 17 package org.apache.harmony.archive.tests.java.util.zip;
CRC32Test.java 17 package org.apache.harmony.archive.tests.java.util.zip;
CheckedInputStreamTest.java 17 package org.apache.harmony.archive.tests.java.util.zip;
  /dalvik/libdex/
CmdUtils.c 30 * Extract "classes.dex" from archive file.
39 ZipArchive archive; local
44 if (dexZipOpenArchive(zipFileName, &archive) != 0) {
46 fprintf(stderr, "Unable to open '%s' as zip archive\n",
63 entry = dexZipFindEntry(&archive, kFileToExtract);
73 if (dexZipExtractEntryToFile(&archive, entry, fd) != 0) {
85 dexZipCloseArchive(&archive);
  /dalvik/vm/
JarFile.h 24 * archive that happens to hold a Dex file.)
27 ZipArchive archive; member in struct:JarFile
34 * Open the Zip archive and get a list of the classfile entries.
JarFile.c 20 * just wants a zip archive with "classes.dex" inside. In Android the
86 ZipArchive archive; local
104 /* Try to find the dex file inside of the archive.
106 if (dexZipOpenArchive(fileName, &archive) != 0) {
109 entry = dexZipFindEntry(&archive, kDexInJarName);
123 dexGetZipEntryModTime(&archive, entry),
124 dexGetZipEntryCrc32(&archive, entry),
170 dexZipCloseArchive(&archive);
179 * Open a Jar file. It's okay if it's just a Zip archive without all of
189 ZipArchive archive; local
    [all...]
  /external/quake/quake/src/QW/client/
cvar.h 60 qboolean archive; // set to true to cause it to be saved to vars.rc member in struct:cvar_s
68 #define CVAR3(NAME, STRING, ARCHIVE) {(NAME), (STRING), (ARCHIVE), 0, 0.0f, (struct cvar_s*) 0}
69 #define CVAR4(NAME, STRING, ARCHIVE, INFO) {(NAME), (STRING), (ARCHIVE), (INFO), 0.0f, (struct cvar_s*) 0}
73 // archive elements set.
98 // with the archive flag set to true.
  /external/quake/quake/src/WinQuake/
cvar.h 60 qboolean archive; // set to true to cause it to be saved to vars.rc member in struct:cvar_s
68 #define CVAR3(NAME, STRING, ARCHIVE) {(char*) (NAME), (char*) (STRING), (ARCHIVE), 0, 0.0f, (struct cvar_s*) 0}
69 #define CVAR4(NAME, STRING, ARCHIVE, INFO) {(char*) (NAME), (char*) (STRING), (ARCHIVE), (INFO), 0.0f, (struct cvar_s*) 0}
73 // archive elements set.
98 // with the archive flag set to true.
  /libcore/luni/src/main/java/org/apache/harmony/archive/util/
Util.java 18 package org.apache.harmony.archive.util;
21 * Helpers for the archive module.
  /libcore/luni/src/test/java-internal/org/apache/harmony/archive/util/
UtilTest.java 18 package org.apache.harmony.archive.util;
  /external/webkit/WebCore/html/
HTMLAppletElement.cpp 124 const AtomicString& archive = getAttribute(archiveAttr); local
125 if (!archive.isNull())
126 args.set("archive", archive);
  /system/core/cpio/
mkbootfs.c 227 void archive(const char *start, const char *prefix) function
253 archive(*argv, x);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
LocalPackagesPage.java 19 import com.android.sdklib.internal.repository.Archive;
272 Archive[] archives = p.getArchives();
274 Archive archive = archives[0]; local
275 String osPath = archive.getLocalOsPath();
283 archive.deleteLocal();
292 error = "No local archive found for this package";
  /dalvik/dx/src/junit/runner/
TestCaseClassLoader.java 161 File archive= new File(path); local
162 if (!archive.exists())
165 zipFile= new ZipFile(archive);
  /external/junit/src/junit/runner/
TestCaseClassLoader.java 175 File archive= new File(path); local
176 if (!archive.exists())
179 zipFile= new ZipFile(archive);
  /external/webkit/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 129 RetainPtr<CFDictionaryRef> LegacyWebArchive::createPropertyListRepresentation(Archive* archive)
133 RetainPtr<CFDictionaryRef> mainResourceDict = createPropertyListRepresentation(archive->mainResource(), MainResource);
139 RetainPtr<CFMutableArrayRef> subresourcesArray(AdoptCF, CFArrayCreateMutable(0, archive->subresources().size(), &kCFTypeArrayCallBacks));
140 const Vector<RefPtr<ArchiveResource> >& subresources(archive->subresources());
151 RetainPtr<CFMutableArrayRef> subframesArray(AdoptCF, CFArrayCreateMutable(0, archive->subframeArchives().size(), &kCFTypeArrayCallBacks));
152 const Vector<RefPtr<Archive> >& subframeArchives(archive->subframeArchives());
158 LOG(Archives, "LegacyWebArchive - Failed to create property list for subframe archive");
172 // If the ResourceResponseVersion (passed in as responseDataType) exists at all, this is a "new" web archive that w
266 RefPtr<LegacyWebArchive> archive = create(); local
569 RefPtr<LegacyWebArchive> archive = create(markupString, frame, nodeList); local
    [all...]
  /frameworks/base/test-runner/src/junit/runner/
TestCaseClassLoader.java 160 File archive= new File(path); local
161 if (!archive.exists())
164 zipFile= new ZipFile(archive);

Completed in 549 milliseconds

1 2 3