Home
last modified time | relevance | path

Searched refs:image_file (Results 1 – 6 of 6) sorted by relevance

/system/apex/tools/
Dapex_compression_test.py186 image_file = files.get('apex_payload.img', None)
187 if image_file is None:
188 image_file = files.get('apex_payload.zip', None)
190 files['apex_payload'] = image_file
/system/apex/tests/testdata/sharedlibs/build/
Dshared_libs_repack.py147 image_file = files.get('apex_payload.img')
148 if image_file is None:
149 image_file = files.get('apex_payload.zip')
151 files['apex_payload'] = image_file
/system/apex/apexer/
Dapexer_test.py230 image_file = None
232 image_file = files["apex_payload.img"]
234 image_file = files["apex_payload.zip"]
235 self.assertIsNotNone(image_file)
236 files["apex_payload"] = image_file
/system/tools/mkbootimg/
Dunpack_bootimg.py480 with open(boot_img, 'rb') as image_file:
481 boot_magic = unpack('8s', image_file.read(8))[0].decode()
482 image_file.seek(0)
484 info = unpack_boot_image(image_file, output_dir)
486 info = unpack_vendor_boot_image(image_file, output_dir)
/system/core/fs_mgr/liblp/
Dimages.cpp104 std::unique_ptr<LpMetadata> ReadFromImageFile(const std::string& image_file) { in ReadFromImageFile() argument
105 unique_fd fd = GetControlFileOrOpen(image_file.c_str(), O_RDONLY | O_CLOEXEC); in ReadFromImageFile()
107 PERROR << __PRETTY_FUNCTION__ << " open failed: " << image_file; in ReadFromImageFile()
/system/core/fs_mgr/liblp/include/liblp/
Dliblp.h88 std::unique_ptr<LpMetadata> ReadFromImageFile(const std::string& image_file);