Searched refs:get_image (Results 1 – 2 of 2) sorted by relevance
/tools/acloud/internal/lib/ |
D | ota_tools.py | 132 def _RewriteMiscInfo(output_file, input_file, lpmake_path, get_image): argument 177 (partition_name, get_image(partition_name))) 181 def BuildSuperImage(self, output_path, misc_info_path, get_image): argument 202 get_image) 224 def _RewriteSystemQemuConfig(output_file, input_file, get_image): argument 247 output_file.write("%s %s %s\n" % (get_image(split_line[1]), 255 def MkCombinedImg(self, output_path, system_qemu_config_path, get_image): argument 277 get_image)
|
D | goldfish_utils_test.py | 169 get_image = mock_ota.BuildSuperImage.call_args[0][2] 173 self.assertEqual(system_image_path, get_image("system")) 174 self.assertEqual(system_dlkm_image_path, get_image("system_dlkm")) 175 self.assertEqual(vendor_image_path, get_image("vendor")) 181 get_image = mock_ota.MkCombinedImg.call_args[0][2] 184 self.assertEqual(vbmeta_image_path, get_image("vbmeta")) 185 self.assertEqual(super_image_path, get_image("super"))
|