Searched refs:img_name (Results 1 – 5 of 5) sorted by relevance
/system/update_engine/scripts/ |
D | cow_converter.py | 55 img_name = os.path.basename(fileinfo.filename) 61 target_img_path = os.path.join(output_dir, img_name)
|
D | simulate_ota.py | 51 def extract_img(zip_archive: zipfile.ZipFile, img_name, output_path, is_source): argument 53 entry_name = "IMAGES/" + img_name + ".img" 57 print("Faild to extract", img_name, "from IMAGES/ dir, trying RADIO/", e) 58 extract_file(zip_archive, "RADIO/" + img_name + ".img", output_path)
|
/system/core/fastboot/ |
D | fastboot.cpp | 184 static std::string find_item_given_name(const std::string& img_name) { in find_item_given_name() argument 189 return std::string(dir) + "/" + img_name; in find_item_given_name() 195 return find_item_given_name(images[i].img_name); in find_item() 1598 std::string img_name; in ParseFlashCommand() local 1606 } else if (img_name.empty()) { in ParseFlashCommand() 1607 img_name = part; in ParseFlashCommand() 1619 if (img_name.empty()) { in ParseFlashCommand() 1620 img_name = partition + ".img"; in ParseFlashCommand() 1622 return std::make_unique<FlashTask>(slot, partition, img_name, apply_vbmeta, fp); in ParseFlashCommand() 1917 unique_fd fd = fp_->source->OpenFile(image->img_name); in AddFlashTasks() [all …]
|
D | fastboot.h | 79 std::string img_name; member
|
/system/tools/mkbootimg/gki/ |
D | certify_bootimg_test.py | 201 img_name = os.path.splitext(os.path.basename(boot_img))[0] 202 signature_output_dir = os.path.join(output_dir, img_name)
|