Home
last modified time | relevance | path

Searched refs:zip_file (Results 1 – 5 of 5) sorted by relevance

/system/update_engine/scripts/
Dbrillo_update_payload359 local zip_file="$1"
368 unzip "${zip_file}" "${entry_name}" -d "${output_directory}" ||
/system/apex/tools/
Ddeapexer.py264 with zipfile.ZipFile(apex_path, 'r') as zip_file:
265 names = zip_file.namelist()
/system/apex/apexer/
Dapexer.py708 zip_file = os.path.join(work_dir, 'apex.zip')
716 cmd.extend(['-o', zip_file])
724 cmd.append(zip_file) # input
/system/libziparchive/
Dzip_archive_test.cc662 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()
Dzip_archive.cc1227 EntryReader(const MappedZipFile& zip_file, const ZipEntry64* entry) in EntryReader() argument
1228 : Reader(), zip_file_(zip_file), entry_(entry) {} in EntryReader()