Home
last modified time | relevance | path

Searched refs:img_name (Results 1 – 3 of 3) sorted by relevance

/aosp14/system/core/fastboot/
H A Dfastboot.cpp183 static std::string find_item_given_name(const std::string& img_name) { in find_item_given_name() argument
188 return std::string(dir) + "/" + img_name; in find_item_given_name()
194 return find_item_given_name(images[i].img_name); in find_item()
1569 std::string img_name; in ParseFlashCommand() local
1577 } else if (img_name.empty()) { in ParseFlashCommand()
1578 img_name = part; in ParseFlashCommand()
1590 if (img_name.empty()) { in ParseFlashCommand()
1591 img_name = partition + ".img"; in ParseFlashCommand()
1593 return std::make_unique<FlashTask>(slot, partition, img_name, apply_vbmeta); in ParseFlashCommand()
1899 unique_fd fd = fp_->source->OpenFile(image->img_name); in FlashImages()
[all …]
H A Dfastboot.h77 std::string img_name; member
H A Dtask.cpp156 if (!helper->AddPartition(partition, image->img_name, image->optional_if_no_image)) { in Initialize()