Home
last modified time | relevance | path

Searched refs:DataStorage (Results 1 – 7 of 7) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/
DVirtIOBlockDevice.cs28 storage = DataStorage.Create(size: 0); in VirtIOBlockDevice()
48 storage = DataStorage.Create(file, persistent: persistent); in LoadImage()
DUFSDevice.cs92 … dataBackends[i] = DataStorage.Create(size: (long)logicalBlockSize * (long)blockCount); in UFSDevice()
105 dataBackends[logicalUnitNumber] = DataStorage.Create(file, persistent: persistent); in LoadFromFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/
DDataStorage.cs15 public static class DataStorage class
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/
DCDROM.cs29 dataBackend = DataStorage.Create(imageFile, size, persistent); in CDROM()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DSamsungK9NANDFlash.cs46 …backingStream = DataStorage.Create(fileName, persistent: !nonPersistent, paddingByte: ErasedValue); in SamsungK9NANDFlash()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBPendrive.cs49 dataBackend = DataStorage.Create(imageFile, size, persistent); in USBPendrive()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCard.cs29 : this(DataStorage.CreateInMemory((int)capacity), capacity, spiMode, blockSize) {} in SDCard()
32 …: this(DataStorage.CreateFromFile(imageFile, capacity, persistent), capacity, spiMode, blockSize) … in SDCard()