Lines Matching defs:Address
108 "[<Address> | <FilePath>] <Offset> <Length>\n\n"
110 "Address - Address in RAM to store/load data\n"
116 "Read 32 bytes from 0xe00000 of SPI flash into RAM at address 0x100000\n"
118 "Read 0x20 bytes from 0x200000 of SPI flash into RAM at address 0x300000\n"
122 "Write 16 bytes from 0x200000 at RAM into SPI flash at address 0x4000000\n"
124 "Update 100 bytes from 0x100000 at RAM in SPI flash at address 0xe00000\n"
212 EFI_PHYSICAL_ADDRESS Address = 0, Offset = 0;
332 // Read address parameter
334 Print (L"sf: No address parameter!\n");
337 Address = ShellHexStrToUintn (AddressStr);
338 if (Address == (UINTN)(-1)) {
339 Print (L"sf: Wrong address parameter\n");
417 Buffer = (UINT8 *) Address;