Home
last modified time | relevance | path

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

/system/core/fastboot/
Dvendor_boot_img_utils.cpp233 new_hdr_v4->vendor_ramdisk_table_entry_num = 1; in replace_default_vendor_ramdisk()
234 new_hdr_v4->vendor_ramdisk_table_size = new_hdr_v4->vendor_ramdisk_table_entry_num * in replace_default_vendor_ramdisk()
323 if ((uint64_t)hdr->vendor_ramdisk_table_entry_num * sizeof(vendor_ramdisk_table_entry_v4) > in replace_vendor_ramdisk_fragment()
332 find_unique_ramdisk(ramdisk_name, old_table_start, hdr->vendor_ramdisk_table_entry_num); in replace_vendor_ramdisk_fragment()
349 for (uint32_t new_ramdisk_idx = 0; new_ramdisk_idx < hdr->vendor_ramdisk_table_entry_num; in replace_vendor_ramdisk_fragment()
378 new_entry_idx < hdr->vendor_ramdisk_table_entry_num; new_entry_idx++) { in replace_vendor_ramdisk_fragment()
391 if (auto res = updater.Copy(r - hdr->vendor_ramdisk_table_entry_num * in replace_vendor_ramdisk_fragment()
Dvendor_boot_img_utils_test.cpp306 EXPECT_EQ(hdr_v4->vendor_ramdisk_table_entry_num, 1); in TEST_P()
395 EXPECT_EQ(hdr->vendor_ramdisk_table_entry_num, 2); in TEST_P()
/system/tools/mkbootimg/include/bootimg/
Dbootimg.h406 uint32_t vendor_ramdisk_table_entry_num; /* number of entries in the vendor ramdisk table */ member
/system/tools/mkbootimg/rust/
Dbootimg_priv.rs513 pub vendor_ramdisk_table_entry_num: u32, field
544 ::core::ptr::addr_of!((*ptr).vendor_ramdisk_table_entry_num) as usize - ptr as usize in bindgen_test_layout_vendor_boot_img_hdr_v4()
551 stringify!(vendor_ramdisk_table_entry_num) in bindgen_test_layout_vendor_boot_img_hdr_v4()
/system/tools/mkbootimg/
Dmkbootimg.py179 vendor_ramdisk_table_size = (args.vendor_ramdisk_table_entry_num *
184 args.vendor_boot.write(pack('I', args.vendor_ramdisk_table_entry_num))
478 args.vendor_ramdisk_table_entry_num = len(vendor_ramdisk_table_builder
Dunpack_bootimg.py409 vendor_ramdisk_table_entry_num = unpack('I', boot_img.read(4))[0]
419 for idx in range(vendor_ramdisk_table_entry_num):