• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:a

77 pub struct VerifiedData<'a>(SlotVerifyData<'a>);
94 pub struct BootImage<'a>(&'a mut [u8]);
97 pub struct VendorBootImage<'a>(&'a mut [u8]);
100 pub struct InitBootImage<'a>(&'a mut [u8]);
103 pub struct KernelImage<'a>(&'a mut [u8]);
106 pub struct Ramdisk<'a>(&'a mut [u8]);
108 pub struct Bootconfig<'a>(&'a mut [u8]);
110 pub struct Dtb<'a>(&'a mut [u8]);
114 pub fn get_boot_image<'a: 'b, 'b: 'c, 'c, 'd>( in get_boot_image()
116 partitions_ram_map: &'a mut [PartitionRamMap<'b, 'c>], in get_boot_image()
117 ) -> (Option<BootImage<'c>>, &'a mut [PartitionRamMap<'b, 'c>]) { in get_boot_image()
129 pub fn get_vendor_boot_image<'a: 'b, 'b: 'c, 'c, 'd>( in get_vendor_boot_image()
131 partitions_ram_map: &'a mut [PartitionRamMap<'b, 'c>], in get_vendor_boot_image()
132 ) -> (Option<VendorBootImage<'c>>, &'a mut [PartitionRamMap<'b, 'c>]) { in get_vendor_boot_image()
143 pub fn get_init_boot_image<'a: 'b, 'b: 'c, 'c, 'd>( in get_init_boot_image()
145 partitions_ram_map: &'a mut [PartitionRamMap<'b, 'c>], in get_init_boot_image()
146 ) -> (Option<InitBootImage<'c>>, &'a mut [PartitionRamMap<'b, 'c>]) { in get_init_boot_image()
157 pub fn get_images<'a: 'b, 'b: 'c, 'c, 'd>( in get_images()
159 partitions_ram_map: &'a mut [PartitionRamMap<'b, 'c>], in get_images()
164 &'a mut [PartitionRamMap<'b, 'c>], in get_images()
187 pub struct Gbl<'a, G>
191 ops: &'a mut G,
195 impl<'a, G> Gbl<'a, G>
561 pub struct GblBuilder<'a, G>
565 ops: &'a mut G,
569 impl<'a, G> GblBuilder<'a, G>
574 pub fn new(ops: &'a mut G) -> Self { in new()
586 pub fn build(self) -> Gbl<'a, G> { in build() argument