Home
last modified time | relevance | path

Searched refs:zip (Results 1 – 25 of 270) sorted by relevance

1234567891011

/frameworks/base/docs/html/sdk/
Dolder_releases.jd51 href="{@docRoot}sdk/download.html?v=archives/android-sdk-windows-1.6_r1.zip">android-sdk-
52 windows-1 .6_r1.zip</a>
61 href="{@docRoot}sdk/download.html?v=archives/android-sdk-mac_x86-1.6_r1.zip">android-sdk-
62 mac_x86-1 .6_r1.zip</a>
96 href="{@docRoot}sdk/download.html?v=archives/android-sdk-windows-1.5_r3.zip">android-sdk-
97 windows-1 .5_r3.zip</a>
106 href="{@docRoot}sdk/download.html?v=archives/android-sdk-mac_x86-1.5_r3.zip">android-sdk-
107 mac_x86-1 .5_r3.zip</a>
116 href="{@docRoot}sdk/download.html?v=archives/android-sdk-linux_x86-1.5_r3.zip">android-
117 sdk- linux_x86-1.5_r3.zip</a>
[all …]
/frameworks/base/tools/aapt/
DPackage.cpp40 ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp<const OutputSet>& outputSet);
41 bool processFile(Bundle* bundle, ZipFile* zip, String8 storageName, const sp<const AaptFile>& file);
43 ssize_t processJarFiles(Bundle* bundle, ZipFile* zip);
60 ZipFile* zip = NULL; in writeAPK() local
100 zip = new ZipFile; in writeAPK()
101 status = zip->open(outputFile.string(), ZipFile::kOpenReadWrite | ZipFile::kOpenCreate); in writeAPK()
112 count = processAssets(bundle, zip, outputSet); in writeAPK()
124 count = processJarFiles(bundle, zip); in writeAPK()
146 for (i = 0; i < zip->getNumEntries(); i++) { in writeAPK()
147 ZipEntry* entry = zip->getEntryByIndex(i); in writeAPK()
[all …]
DCommand.cpp57 ZipFile* zip; in openReadOnly() local
60 zip = new ZipFile; in openReadOnly()
61 result = zip->open(fileName, ZipFile::kOpenReadOnly); in openReadOnly()
71 delete zip; in openReadOnly()
75 return zip; in openReadOnly()
86 ZipFile* zip = NULL; in openReadWrite() local
95 zip = new ZipFile; in openReadWrite()
96 result = zip->open(fileName, flags); in openReadWrite()
98 delete zip; in openReadWrite()
99 zip = NULL; in openReadWrite()
[all …]
/frameworks/multidex/library/test/src/android/support/multidex/
DZipUtilTest.java37 import java.util.zip.ZipEntry;
38 import java.util.zip.ZipException;
39 import java.util.zip.ZipFile;
92 ZipFile zip = new ZipFile(zipFile); in testCrcRange() local
93 Assert.assertEquals(zip.size(), toCheck.size()); in testCrcRange()
94 Enumeration<? extends ZipEntry> ref = zip.entries(); in testCrcRange()
108 zip.close(); in testCrcRange()
113 ZipFile zip = new ZipFile(zipFile); in testCrcValue() local
114 Enumeration<? extends ZipEntry> ref = zip.entries(); in testCrcValue()
120 InputStream in = zip.getInputStream(refEntry); in testCrcValue()
[all …]
DZipEntryReader.java28 import java.util.zip.ZipEntry;
29 import java.util.zip.ZipException;
/frameworks/base/core/java/android/util/apk/
DZipUtils.java54 static Pair<ByteBuffer, Long> findZipEndOfCentralDirectoryRecord(RandomAccessFile zip) in findZipEndOfCentralDirectoryRecord() argument
66 long fileSize = zip.length(); in findZipEndOfCentralDirectoryRecord()
74 Pair<ByteBuffer, Long> result = findZipEndOfCentralDirectoryRecord(zip, 0); in findZipEndOfCentralDirectoryRecord()
82 return findZipEndOfCentralDirectoryRecord(zip, UINT16_MAX_VALUE); in findZipEndOfCentralDirectoryRecord()
98 RandomAccessFile zip, int maxCommentSize) throws IOException { in findZipEndOfCentralDirectoryRecord() argument
113 long fileSize = zip.length(); in findZipEndOfCentralDirectoryRecord()
124 zip.seek(bufOffsetInFile); in findZipEndOfCentralDirectoryRecord()
125 zip.readFully(buf.array(), buf.arrayOffset(), buf.capacity()); in findZipEndOfCentralDirectoryRecord()
189 RandomAccessFile zip, long zipEndOfCentralDirectoryPosition) throws IOException { in isZip64EndOfCentralDirectoryLocatorPresent() argument
198 zip.seek(locatorPosition); in isZip64EndOfCentralDirectoryLocatorPresent()
[all …]
/frameworks/base/core/java/android/app/
DApplicationLoaders.java29 public ClassLoader getClassLoader(String zip, int targetSdkVersion, boolean isBundled, in getClassLoader() argument
51 ClassLoader loader = mLoaders.get(zip); in getClassLoader()
56 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip); in getClassLoader()
59 zip, in getClassLoader()
72 mLoaders.put(zip, pathClassloader); in getClassLoader()
76 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip); in getClassLoader()
77 PathClassLoader pathClassloader = new PathClassLoader(zip, parent); in getClassLoader()
/frameworks/base/libs/androidfw/
DAssetManager.cpp1875 sp<SharedZip> zip = gOpen.valueFor(path).promote(); in get() local
1876 if (zip != NULL && zip->mModWhen == modWhen) { in get()
1877 return zip; in get()
1879 if (zip == NULL && !createIfNotPresent) { in get()
1882 zip = new SharedZip(path, modWhen); in get()
1883 gOpen.add(path, zip); in get()
1884 return zip; in get()
2009 sp<SharedZip> zip = mZipFile[idx]; in getZip() local
2010 if (zip == NULL) { in getZip()
2011 zip = SharedZip::get(path); in getZip()
[all …]
/frameworks/base/cmds/idmap/
Dcreate.cpp18 std::unique_ptr<ZipFileRO> zip(ZipFileRO::open(zip_path)); in get_zip_entry_crc() local
19 if (zip.get() == NULL) { in get_zip_entry_crc()
22 ZipEntryRO entry = zip->findEntryByName(entry_name); in get_zip_entry_crc()
26 if (!zip->getEntryInfo(entry, NULL, NULL, NULL, NULL, NULL, crc)) { in get_zip_entry_crc()
29 zip->releaseEntry(entry); in get_zip_entry_crc()
Dscan.cpp123 std::unique_ptr<ZipFileRO> zip(ZipFileRO::open(path)); in parse_apk() local
124 if (zip.get() == NULL) { in parse_apk()
129 if ((entry = zip->findEntryByName("AndroidManifest.xml")) == NULL) { in parse_apk()
135 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) { in parse_apk()
143 FileMap *dataMap = zip->createEntryFileMap(entry); in parse_apk()
/frameworks/native/cmds/dumpstate/
Dbugreport-format.md20 _bugreport-DATE.txt_ file, but then **Shell** creates a zip file called
25 On _Android N (TBD)_, `dumpstate` generates a zip file directly (unless there
29 The zip file is by default called _bugreport-BUILD_ID-DATE.zip_ and it contains a
34 The zip file also contains 2 metadata entries generated by `dumpstate`:
40 `dumpstate` can also copy files from the device’s filesystem into the zip file
42 would generate a `FS/dirA/dirB/fileC` entry in the zip file.
44 When systrace is enabled, the zip file will contain a `systrace.txt` file as well.
48 - Tombstone files were removed and added to the zip file.
/frameworks/base/docs/html-intl/intl/ko/preview/
Ddownload-ota.jd205 <td><a href="#top" onclick="onDownload(this)">bullhead-ota-npd35k-b8cfbd80.zip</a><br>
213 <td><a href="#top" onclick="onDownload(this)">shamu-ota-npd35k-078e6fa5.zip</a><br>
221 <td><a href="#top" onclick="onDownload(this)">angler-ota-npd35k-88457699.zip</a><br>
229 <td><a href="#top" onclick="onDownload(this)">volantis-ota-npd35k-51dbae76.zip</a><br>
237 <td><a href="#top" onclick="onDownload(this)">volantisg-ota-npd35k-834f047f.zip</a><br>
245 <td><a href="#top" onclick="onDownload(this)">fugu-ota-npd35k-6ac91298.zip</a><br>
253 <td><a href="#top" onclick="onDownload(this)">ryu-ota-npd35k-a0b2347f.zip</a><br>
261 <td><a href="#top" onclick="onDownload(this)">seed_l8150-ota-npd35k-09897a1d.zip</a><br>
/frameworks/base/docs/html-intl/intl/ja/preview/
Ddownload-ota.jd205 <td><a href="#top" onclick="onDownload(this)">bullhead-ota-npd35k-b8cfbd80.zip</a><br>
213 <td><a href="#top" onclick="onDownload(this)">shamu-ota-npd35k-078e6fa5.zip</a><br>
221 <td><a href="#top" onclick="onDownload(this)">angler-ota-npd35k-88457699.zip</a><br>
229 <td><a href="#top" onclick="onDownload(this)">volantis-ota-npd35k-51dbae76.zip</a><br>
237 <td><a href="#top" onclick="onDownload(this)">volantisg-ota-npd35k-834f047f.zip</a><br>
245 <td><a href="#top" onclick="onDownload(this)">fugu-ota-npd35k-6ac91298.zip</a><br>
253 <td><a href="#top" onclick="onDownload(this)">ryu-ota-npd35k-a0b2347f.zip</a><br>
261 <td><a href="#top" onclick="onDownload(this)">seed_l8150-ota-npd35k-09897a1d.zip</a><br>
/frameworks/base/docs/html-intl/intl/zh-cn/preview/
Ddownload-ota.jd205 <td><a href="#top" onclick="onDownload(this)">bullhead-ota-npd35k-b8cfbd80.zip</a><br>
213 <td><a href="#top" onclick="onDownload(this)">shamu-ota-npd35k-078e6fa5.zip</a><br>
221 <td><a href="#top" onclick="onDownload(this)">angler-ota-npd35k-88457699.zip</a><br>
229 <td><a href="#top" onclick="onDownload(this)">volantis-ota-npd35k-51dbae76.zip</a><br>
237 <td><a href="#top" onclick="onDownload(this)">volantisg-ota-npd35k-834f047f.zip</a><br>
245 <td><a href="#top" onclick="onDownload(this)">fugu-ota-npd35k-6ac91298.zip</a><br>
253 <td><a href="#top" onclick="onDownload(this)">ryu-ota-npd35k-a0b2347f.zip</a><br>
261 <td><a href="#top" onclick="onDownload(this)">seed_l8150-ota-npd35k-09897a1d.zip</a><br>
/frameworks/base/cmds/bootanimation/
DBootAnimation.cpp426 static bool readFile(ZipFileRO* zip, const char* name, String8& outString) in readFile() argument
428 ZipEntryRO entry = zip->findEntryByName(name); in readFile()
434 FileMap* entryMap = zip->createEntryFileMap(entry); in readFile()
435 zip->releaseEntry(entry); in readFile()
513 if (!readFile(animation.zip, "desc.txt", desString)) { in parseAnimationDesc()
520 if (readFile(animation.zip, "audio_conf.txt", audioConf)) { in parseAnimationDesc()
590 ZipFileRO* mZip = animation.zip; in preloadZip()
797 if (animation->zip) in releaseAnimation()
798 delete animation->zip; in releaseAnimation()
809 ZipFileRO *zip = ZipFileRO::open(fn); in loadAnimation() local
[all …]
/frameworks/base/docs/html/sdk/api_diff/21/
DmissingSinces.txt1102 NO DOC BLOCK: java.util.zip.ZipEntry Field CENATT
1103 NO DOC BLOCK: java.util.zip.ZipFile Field CENATT
1104 NO DOC BLOCK: java.util.zip.ZipInputStream Field CENATT
1105 NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENATT
1106 NO DOC BLOCK: java.util.zip.ZipEntry Field CENATX
1107 NO DOC BLOCK: java.util.zip.ZipFile Field CENATX
1108 NO DOC BLOCK: java.util.zip.ZipInputStream Field CENATX
1109 NO DOC BLOCK: java.util.zip.ZipOutputStream Field CENATX
1110 NO DOC BLOCK: java.util.zip.ZipEntry Field CENCOM
1111 NO DOC BLOCK: java.util.zip.ZipFile Field CENCOM
[all …]
/frameworks/base/docs/html-intl/intl/zh-cn/training/wearables/apps/
Dcreating-app-china.jd23 <a href="https://dl.google.com/androidwear/developers/china/google-play-services-7-8-87.zip" class=…
24 <p class="filename">google-play-services-7-8-87.zip</p>
63 <li><a href="https://dl.google.com/androidwear/developers/china/google-play-services-7-8-87.zip">下载…
64 文件名为 {@code google-play-services-7-8-87.zip}。
66 <li>通过从下载的 zip 文件提取 {@code google-play-services-7-8-87/} 目录来创建本地 Maven 存储库,并将其放入项目的根目录中。
/frameworks/base/tools/aapt2/dump/
DDump.cpp60 std::unique_ptr<io::ZipFileCollection> zip = io::ZipFileCollection::create(filePath, &err); in tryDumpFile() local
61 if (zip) { in tryDumpFile()
62 io::IFile* file = zip->findFile("resources.arsc.flat"); in tryDumpFile()
/frameworks/base/docs/html-intl/intl/ja/training/basics/activity-lifecycle/
Dindex.jd30 …<a href="http://developer.android.com/shareables/training/ActivityLifecycle.zip" class="button">デモ…
31 <p class="filename">ActivityLifecycle.zip</p>
/frameworks/base/docs/html-intl/intl/ru/training/basics/activity-lifecycle/
Dindex.jd30 …<a href="http://developer.android.com/shareables/training/ActivityLifecycle.zip" class="button">За…
31 <p class="filename">ActivityLifecycle.zip</p>
/frameworks/base/docs/html-intl/intl/zh-tw/training/basics/activity-lifecycle/
Dindex.jd30 …<a href="http://developer.android.com/shareables/training/ActivityLifecycle.zip" class="button">下載…
31 <p class="filename">ActivityLifecycle.zip</p>
/frameworks/base/docs/html-intl/intl/ko/training/basics/activity-lifecycle/
Dindex.jd30 …<a href="http://developer.android.com/shareables/training/ActivityLifecycle.zip" class="button">데모…
31 <p class="filename">ActivityLifecycle.zip</p>
/frameworks/multidex/library/src/android/support/multidex/
DZipUtil.java26 import java.util.zip.CRC32;
27 import java.util.zip.ZipException;
/frameworks/base/docs/html-intl/intl/zh-cn/training/basics/activity-lifecycle/
Dindex.jd30 …<a href="http://developer.android.com/shareables/training/ActivityLifecycle.zip" class="button">下载…
31 <p class="filename">ActivityLifecycle.zip</p>
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DAsmGeneratorTest.java44 import java.util.zip.ZipEntry;
45 import java.util.zip.ZipFile;
457 ZipFile zip = new ZipFile(jarPath); in parseZip() local
458 Enumeration<? extends ZipEntry> entries = zip.entries(); in parseZip()
463 ClassReader cr = new ClassReader(zip.getInputStream(entry)); in parseZip()
467 filesFound.put(entry.getName(), zip.getInputStream(entry)); in parseZip()

1234567891011