Searched refs:zip_file (Results 1 – 5 of 5) sorted by relevance
/system/core/adb/client/ |
D | fastdeploy.cpp | 153 std::unique_ptr<android::ZipFileRO> zip_file((android::ZipFileRO::open)(apk_path)); in get_package_name_from_apk() local 155 if (zip_file == nullptr) { in get_package_name_from_apk() 158 android::ZipEntryRO entry = zip_file->findEntryByName("AndroidManifest.xml"); in get_package_name_from_apk() 163 if (!zip_file->getEntryInfo(entry, NULL, &manifest_len, NULL, NULL, NULL, NULL)) { in get_package_name_from_apk() 167 if (!zip_file->uncompressEntry(entry, manifest_data.data(), manifest_len)) { in get_package_name_from_apk()
|
/system/update_engine/scripts/ |
D | brillo_update_payload | 344 local zip_file="$1" 353 unzip "${zip_file}" "${entry_name}" -d "${output_directory}" ||
|
/system/apex/apexer/ |
D | apexer.py | 653 zip_file = os.path.join(work_dir, 'apex.zip') 661 cmd.extend(['-o', zip_file]) 669 cmd.append(zip_file) # input
|
/system/libziparchive/ |
D | zip_archive_test.cc | 662 static void ZipArchiveStreamTestUsingContents(const std::string& zip_file, in ZipArchiveStreamTestUsingContents() argument 666 ASSERT_EQ(0, OpenArchiveWrapper(zip_file, &handle)); in ZipArchiveStreamTestUsingContents() 678 static void ZipArchiveStreamTestUsingMemory(const std::string& zip_file, in ZipArchiveStreamTestUsingMemory() argument 681 ASSERT_EQ(0, OpenArchiveWrapper(zip_file, &handle)); in ZipArchiveStreamTestUsingMemory()
|
D | zip_archive.cc | 1169 EntryReader(const MappedZipFile& zip_file, const ZipEntry64* entry) in EntryReader() argument 1170 : Reader(), zip_file_(zip_file), entry_(entry) {} in EntryReader()
|