Home
last modified time | relevance | path

Searched defs:b (Results 1 – 15 of 15) sorted by relevance

/bootable/libbootloader/gbl/libsafemath/src/
Dlib.rs288 let b: SafeNum = 12.into(); in test_addition() localVariable
295 let b: SafeNum = 1.into(); in test_subtraction() localVariable
302 let b: SafeNum = 3.into(); in test_multiplication() localVariable
309 let b: SafeNum = 41.into(); in test_division() localVariable
316 let b: SafeNum = 10.into(); in test_remainder() localVariable
327 let b = poison - 2; in test_addition_poison() localVariable
340 let b = poison + 2; in test_subtraction_poison() localVariable
353 let b = poison / 4; in test_multiplication_poison() localVariable
366 let b = poison * 4; in test_division_poison() localVariable
379 let b = poison * 4; in test_remainder_poison() localVariable
/bootable/libbootloader/gbl/libgbl/src/
Dlib.rs114 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()
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()
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()
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()
217 avb_ops: &mut impl avb::Ops<'b>, in load_and_verify_image()
221 ) -> Result<VerifiedData<'b>> { in load_and_verify_image()
[all …]
Dops.rs118 fn load_slot_interface<'b, B: gbl_storage::AsBlockDevice, M: slots::Manager>( in load_slot_interface()
122 ) -> GblResult<slots::Cursor<'b, B, M>> { in load_slot_interface()
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java94 Bitmap b = mText.getDrawingCache(); in run() local
178 Button b = (Button) findViewById(R.id.go); in onCreate() local
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DPayloadSpec.java43 public PayloadSpec(Builder b) { in PayloadSpec()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/
DPrepareUpdateService.java279 Bundle b = new Bundle(); in createBundle() local
/bootable/libbootloader/gbl/efi/src/
Dandroid_boot.rs48 fn avb_verify_slot<'a, 'b, 'c>( in avb_verify_slot()
Dfastboot.rs194 ) -> GblResult<UsbTransport<'a, 'b>> { in init_usb()
Dnet.rs342 pub fn get_socket(&mut self) -> &mut tcp::Socket<'b> { in get_socket()
/bootable/recovery/minui/
Dgraphics.cpp253 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) { in gr_color()
/bootable/libbootloader/gbl/libgbl/src/fastboot/
Dmod.rs126 mut args: Split<'b, char>, in parse_partition()
/bootable/deprecated-ota/tests/unit/
Dupdater_test.cpp1044 std::string b(4096, 'b'); in GenerateTransferList() local
/bootable/recovery/recovery_ui/
Dscreen_ui.cpp961 (void)ev_sync_sw_state([this](auto&& a, auto&& b) { return this->SetSwCallback(a, b);}); in Init()
/bootable/libbootloader/gbl/libefi/src/
Dlib.rs365 pub fn get_memory_map<'b>(&self, mmap_buffer: &'b mut [u8]) -> EfiResult<EfiMemoryMap<'b>> { in get_memory_map()
/bootable/libbootloader/gbl/libfastboot/src/
Dlib.rs914 fn utils<'b>(&'b mut self, info: Option<&'b mut dyn FastbootInfoSend>) -> FastbootUtils<'b> { in utils()