| /bootable/libbootloader/gbl/libsafemath/src/ |
| D | lib.rs | 319 let a: SafeNum = 2100.into(); in test_addition() localVariable 326 let a: SafeNum = 667.into(); in test_subtraction() localVariable 333 let a: SafeNum = 17.into(); in test_multiplication() localVariable 340 let a: SafeNum = 1066.into(); in test_division() localVariable 347 let a: SafeNum = 613.into(); in test_remainder() localVariable 358 let a = poison - 1; in test_addition_poison() localVariable 371 let a = poison + 1; in test_subtraction_poison() localVariable 384 let a = poison / 2; in test_multiplication_poison() localVariable 397 let a = poison * 2; in test_division_poison() localVariable 410 let a = poison * 2; in test_remainder_poison() localVariable
|
| /bootable/libbootloader/gbl/libgbl/src/fuchsia_boot/ |
| D | mod.rs | 38 fn find_part_aliases<'a, 'b, 'c>( in find_part_aliases() 39 ops: &mut (impl GblOps<'a, 'c> + ?Sized), in find_part_aliases() 155 pub fn zircon_load_verify<'a, 'd>( in zircon_load_verify() 156 ops: &mut impl GblOps<'a, 'd>, in zircon_load_verify() 242 pub fn zircon_load_verify_abr<'a, 'd>( in zircon_load_verify_abr() 243 ops: &mut impl GblOps<'a, 'd>, in zircon_load_verify_abr() 257 pub fn zircon_check_enter_fastboot<'a, 'b>(ops: &mut impl GblOps<'a, 'b>) -> bool { in zircon_check_enter_fastboot() 370 pub(crate) fn create_gbl_ops<'a>(partitions: &'a [TestGblDisk]) -> FakeGblOps<'a, 'static> { in create_gbl_ops()
|
| D | vboot.rs | 33 pub(crate) fn zircon_verify_kernel<'a, 'b, 'c, B: SplitByteSliceMut + PartialEq>( in zircon_verify_kernel() 121 pub fn copy_items_after_kernel<'a, B: SplitByteSliceMut + PartialEq>( in copy_items_after_kernel()
|
| /bootable/libbootloader/gbl/libgbl/src/android_boot/ |
| D | load.rs | 270 pub fn android_load_verify<'a, 'b, 'c>( in android_load_verify() 271 ops: &mut impl GblOps<'a, 'b>, in android_load_verify() 342 fn load_verify_v2_and_lower<'a, 'b, 'c>( in load_verify_v2_and_lower() 343 ops: &mut impl GblOps<'a, 'b>, in load_verify_v2_and_lower() 456 fn load_verify_v3_and_v4<'a, 'b, 'c>( in load_verify_v3_and_v4() 457 ops: &mut impl GblOps<'a, 'b>, in load_verify_v3_and_v4() 663 pub(super) fn split_chunks<'a, const N: usize>( in split_chunks() 679 fn load_entire_part<'a, 'b, 'c>( in load_entire_part() 680 ops: &mut impl GblOps<'a, 'b>, in load_entire_part() 705 fn relocate_kernel<'a, 'b, 'c>( in relocate_kernel() [all …]
|
| D | vboot.rs | 97 pub(crate) fn avb_verify_slot<'a, 'b, 'c>( in avb_verify_slot() 98 ops: &mut impl GblOps<'a, 'b>, in avb_verify_slot() 216 partitions_to_verify: &PartitionsToVerify<'a>, in test_avb_verify_slot()
|
| D | mod.rs | 57 pub fn android_load_verify_fixup<'a, 'b, 'c>( in android_load_verify_fixup() 200 pub(crate) fn get_boot_slot<'a, 'b, 'c>( in get_boot_slot() 201 ops: &mut impl GblOps<'a, 'b>, in get_boot_slot() 317 pub fn android_main<'a, 'b, 'c, G: GblOps<'a, 'b>>( in android_main() 1229 fn test_fastboot_is_triggered<'a, 'b>(ops: &mut impl GblOps<'a, 'b>) { in test_fastboot_is_triggered()
|
| /bootable/libbootloader/gbl/libdttable/src/ |
| D | lib.rs | 129 pub fn from_bytes(buffer: &'a [u8]) -> Result<DtTableImage<'a>> { in from_bytes() 159 pub fn entries(&'a self) -> DtTableImageIterator<'a> { in entries() 164 pub fn nth_entry(&self, n: usize) -> Result<DtTableEntry<'a>> { in nth_entry()
|
| /bootable/libbootloader/gbl/libgbl/src/ |
| D | decompress.rs | 122 pub fn decompress_kernel<'a, 'b>( in decompress_kernel() 123 ops: &mut impl GblOps<'a, 'b>, in decompress_kernel()
|
| D | lib.rs | 142 ) -> Result<Cursor<'a>> { in load_slot_interface()
|
| D | partition.rs | 297 pub fn dev(&mut self) -> &mut Disk<RefMut<'a, B>, RefMut<'a, [u8]>> { in dev()
|
| D | ops.rs | 131 Disk<impl BlockIo + 'a, impl DerefMut<Target = [u8]> + 'a>, in disks() 475 Disk<impl BlockIo + 'a, impl DerefMut<Target = [u8]> + 'a>, in disks() 883 Disk<impl BlockIo + 'a, impl DerefMut<Target = [u8]> + 'a>, in disks()
|
| /bootable/libbootloader/gbl/libefi/src/ |
| D | lib.rs | 194 pub fn boot_services(&self) -> BootServices<'a> { in boot_services() 201 pub fn boot_services_checked(&self) -> Result<BootServices<'a>> { in boot_services_checked() 227 pub fn con_out(&self) -> Result<Protocol<'a, SimpleTextOutputProtocol>> { in con_out() 286 pub fn open_protocol<T: ProtocolInfo>(&self, handle: DeviceHandle) -> Result<Protocol<'a, T>> { in open_protocol() 323 pub fn locate_handle_buffer_by_protocol<T: ProtocolInfo>(&self) -> Result<LocatedHandles<'a>> { in locate_handle_buffer_by_protocol() 344 pub fn find_first_and_open<T: ProtocolInfo>(&self) -> Result<Protocol<'a, T>> { in find_first_and_open() 405 pub fn create_event(&self, event_type: EventType) -> Result<Event<'a, 'static>> { in create_event() 461 ) -> Result<Event<'a, 'e>> { in create_event_with_notification() 825 ) -> Result<EfiMemoryAttributesTable<'a>> { in new() 966 pub fn generate_protocol<'a, P: ProtocolInfo>( in generate_protocol() [all …]
|
| D | ab_slots.rs | 44 fn new_without_token(protocol: Protocol<'a, ab_slot::GblSlotProtocol>) -> Self { in new_without_token() 248 fn new(protocol: Protocol<'a, ab_slot::GblSlotProtocol>) -> Self { in new() 269 Disk<impl BlockIo + 'a, impl DerefMut<Target = [u8]> + 'a>, in disks()
|
| /bootable/libbootloader/gbl/efi/src/ |
| D | fastboot.rs | 50 fn new(socket: &'c mut EfiTcpSocket<'a, 'b>) -> Self { in new() 109 fn new(max_packet_size: usize, protocol: Protocol<'a, GblFastbootUsbProtocol>) -> Self { in new()
|
| D | net.rs | 56 fn reset_simple_network<'a>(snp: &Protocol<'a, SimpleNetworkProtocol>) -> Result<()> { in reset_simple_network() 82 protocol: Protocol<'a, SimpleNetworkProtocol>, in new() 556 fn create_socket(&'b mut self) -> Result<EfiTcpSocket<'a, 'b>> { in create_socket() 662 ) -> Result<EfiTcpSocket<'a, 'b>> { in init()
|
| D | utils.rs | 40 ) -> Result<DevicePathText<'a>> { in get_device_path()
|
| /bootable/libbootloader/gbl/libefi/src/protocol/ |
| D | device_path.rs | 50 ) -> Result<DevicePathText<'a>> { in convert_device_path_to_text()
|
| D | gbl_efi_image_loading.rs | 309 fn generate_protocol<'a, P: ProtocolInfo>( in generate_protocol() 312 ) -> Protocol<'a, P> { in generate_protocol()
|
| /bootable/recovery/minui/ |
| D | graphics.cpp | 192 uint8_t a = *sx++; in TextBlend() local 253 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) { in gr_color()
|
| /bootable/libbootloader/gbl/libgbl/src/fastboot/ |
| D | mod.rs | 96 fn new(workload: TaskWorkload<'a, 'b, B, P>) -> Self { in new() 259 task_mapper: fn(Task<'a, 'b, B, P>) -> F, in new() 452 ) -> CommandResult<PartitionIo<'a, B>> { in wait_partition_io() 465 ) -> CommandResult<(usize, PartitionIo<'a, B>)> { in parse_and_get_partition_io() 476 task: Task<'a, 'b, B, P>, in schedule_task() 839 gbl_ops: &mut impl GblOps<'a, 'd>, in run_gbl_fastboot() 870 pub async fn run_gbl_fastboot_stack<'a, 'b, const N: usize>( in run_gbl_fastboot_stack() 871 gbl_ops: &mut impl GblOps<'a, 'b>, in run_gbl_fastboot_stack()
|
| /bootable/libbootloader/gbl/libgbl/src/gbl_avb/ |
| D | ops.rs | 410 fn fallback_not_implemented<'a, 'b, T>( in fallback_not_implemented() 411 ops: &mut impl GblOps<'a, 'b>, in fallback_not_implemented()
|
| /bootable/libbootloader/gbl/libstorage/src/ |
| D | lib.rs | 425 pub fn from_ref_mut(val: RefMut<'a, Disk<T, impl DerefMut<Target = [u8]>>>) -> Self { in from_ref_mut()
|
| /bootable/libbootloader/gbl/libfastboot/src/ |
| D | lib.rs | 1031 pub fn next_arg<'a, T: Iterator<Item = &'a str>>(args: &mut T) -> Option<&'a str> { in next_arg() 1047 pub fn next_arg_u64<'a, T: Iterator<Item = &'a str>>(args: &mut T) -> CommandResult<Option<u64>> { in next_arg_u64()
|
| /bootable/deprecated-ota/tests/unit/ |
| D | updater_test.cpp | 1043 std::string a(4096, 'a'); in GenerateTransferList() local
|
| /bootable/recovery/recovery_ui/ |
| D | screen_ui.cpp | 961 (void)ev_sync_sw_state([this](auto&& a, auto&& b) { return this->SetSwCallback(a, b);}); in Init()
|