Home
last modified time | relevance | path

Searched refs:boot_img_hdr_v4 (Results 1 – 5 of 5) sorted by relevance

/system/tools/mkbootimg/rust/
Dbootimg.rs19 boot_img_hdr_v0, boot_img_hdr_v1, boot_img_hdr_v2, boot_img_hdr_v3, boot_img_hdr_v4,
36 V4(LayoutVerified<B, boot_img_hdr_v4>),
119 4 => Ok(Self::V4(parse_header::<B, boot_img_hdr_v4>(buffer)?)), in parse()
299 let mut buffer = [0; core::mem::size_of::<boot_img_hdr_v4>()]; in parse_v4()
300 add::<boot_img_hdr_v4>( in parse_v4()
302 boot_img_hdr_v4 { in parse_v4()
312 Ok(BootImage::V4(LayoutVerified::<&[u8], boot_img_hdr_v4>::new(&buffer).unwrap())); in parse_v4()
Dbootimg_priv.rs475 pub struct boot_img_hdr_v4 { struct
481 const UNINIT: ::core::mem::MaybeUninit<boot_img_hdr_v4> = ::core::mem::MaybeUninit::uninit(); in bindgen_test_layout_boot_img_hdr_v4() argument
484 ::core::mem::size_of::<boot_img_hdr_v4>(), in bindgen_test_layout_boot_img_hdr_v4()
486 concat!("Size of: ", stringify!(boot_img_hdr_v4)) in bindgen_test_layout_boot_img_hdr_v4()
489 ::core::mem::align_of::<boot_img_hdr_v4>(), in bindgen_test_layout_boot_img_hdr_v4()
491 concat!("Alignment of ", stringify!(boot_img_hdr_v4)) in bindgen_test_layout_boot_img_hdr_v4()
496 concat!("Offset of field: ", stringify!(boot_img_hdr_v4), "::", stringify!(signature_size)) in bindgen_test_layout_boot_img_hdr_v4()
499 impl Default for boot_img_hdr_v4 { implementation
/system/tools/mkbootimg/include/bootimg/
Dbootimg.h400 struct boot_img_hdr_v4 : public boot_img_hdr_v3 { struct
/system/core/fastboot/
Dbootimg_utils.cpp71 auto hdr_v4 = reinterpret_cast<boot_img_hdr_v4*>(hdr); in mkbootimg_v3_and_above()
/system/update_engine/payload_generator/
Dboot_img_filesystem.cc111 auto hdr_v4 = reinterpret_cast<boot_img_hdr_v4*>(header_blob.data()); in CreateFromFile()