Home
last modified time | relevance | path

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

/aosp12/system/core/fastboot/
H A Dvendor_boot_img_utils.cpp228 new_hdr_v4->vendor_ramdisk_table_entry_size = sizeof(vendor_ramdisk_table_entry_v4); in replace_default_vendor_ramdisk()
251 auto new_entry = reinterpret_cast<vendor_ramdisk_table_entry_v4*>(updater.new_cur()); in replace_default_vendor_ramdisk()
274 [[nodiscard]] Result<const vendor_ramdisk_table_entry_v4*> find_unique_ramdisk( in find_unique_ramdisk()
275 const std::string& ramdisk_name, const vendor_ramdisk_table_entry_v4* table, in find_unique_ramdisk()
277 const vendor_ramdisk_table_entry_v4* ret = nullptr; in find_unique_ramdisk()
279 const vendor_ramdisk_table_entry_v4* entry = table; in find_unique_ramdisk()
320 reinterpret_cast<const vendor_ramdisk_table_entry_v4*>(vendor_boot.data() + o + p + q); in replace_vendor_ramdisk_fragment()
324 const vendor_ramdisk_table_entry_v4* replace_entry = *find_res; in replace_vendor_ramdisk_fragment()
336 auto old_ramdisk_entry = reinterpret_cast<const vendor_ramdisk_table_entry_v4*>( in replace_vendor_ramdisk_fragment()
369 auto new_entry = reinterpret_cast<vendor_ramdisk_table_entry_v4*>(updater.new_cur()); in replace_vendor_ramdisk_fragment()
H A Dvendor_boot_img_utils_test.cpp308 EXPECT_GE(hdr_v4->vendor_ramdisk_table_entry_size, sizeof(vendor_ramdisk_table_entry_v4)); in TEST_P()
309 auto entry = reinterpret_cast<const vendor_ramdisk_table_entry_v4*>(&new_content[o + p + q]); in TEST_P()
331 std::string_view GetRamdiskName(const vendor_ramdisk_table_entry_v4* entry) { in GetRamdiskName()
397 EXPECT_GE(hdr->vendor_ramdisk_table_entry_size, sizeof(vendor_ramdisk_table_entry_v4)); in TEST_P()
399 reinterpret_cast<const vendor_ramdisk_table_entry_v4*>(&new_content[o + p + q]); in TEST_P()
405 auto entry_platform = reinterpret_cast<const vendor_ramdisk_table_entry_v4*>( in TEST_P()
/aosp12/system/tools/mkbootimg/include/bootimg/
H A Dbootimg.h411 struct vendor_ramdisk_table_entry_v4 { struct