| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/ |
| D | SDCardExtensions.cs | 17 …ter<DeprecatedSDCard, NullRegistrationPoint> attachTo, long size, bool persistent = true, string n… in SdCardFromFile() argument 19 var card = new DeprecatedSDCard(file, size, persistent); in SdCardFromFile() 24 …heralRegister<SDCard, NullRegistrationPoint> attachTo, long size, bool persistent = true, string n… in SdCardFromFile() argument 26 var card = new SDCard(file, size, persistent); in SdCardFromFile() 31 …ister<ISPIPeripheral, NullRegistrationPoint> attachTo, long size, bool persistent = true, string n… in SdCardFromFile() argument 33 var card = new SDCard(file, size, persistent, spiMode: true); in SdCardFromFile() 38 …ral, NumberRegistrationPoint<int>> attachTo, int port, long size, bool persistent = true, string n… in SdCardFromFile() argument 40 var card = new SDCard(file, size, persistent, spiMode: true); in SdCardFromFile()
|
| D | DeprecatedSDCard.cs | 19 public DeprecatedSDCard(string imageFile, long? cardSize, bool persistent) in DeprecatedSDCard() argument 27 if(!persistent) in DeprecatedSDCard()
|
| D | SDCard.cs | 31 …public SDCard(string imageFile, long capacity, bool persistent = false, bool spiMode = false, Bloc… in SDCard() argument 32 …: this(DataStorage.CreateFromFile(imageFile, capacity, persistent), capacity, spiMode, blockSize) … in SDCard()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/ |
| D | TapExtensions.cs | 19 …AndGetTap(this Emulation emulation, string hostInterfaceName, string name, bool persistent = false) in CreateAndGetTap() argument 25 if(persistent) in CreateAndGetTap() 31 result = new LinuxTapInterface(hostInterfaceName, persistent); in CreateAndGetTap() 38 …CreateTap(this Emulation emulation, string hostInterfaceName, string name, bool persistent = false) in CreateTap() argument 40 CreateAndGetTap(emulation, hostInterfaceName, name, persistent); in CreateTap()
|
| D | LinuxTapInterface.cs | 33 public LinuxTapInterface(string name, bool persistent) in LinuxTapInterface() argument 38 this.persistent = persistent; in LinuxTapInterface() 166 tapFileDescriptor = TAPTools.OpenTAP(devName, persistent); in Init() 276 private readonly bool persistent; field in Antmicro.Renode.HostInterfaces.Network.LinuxTapInterface
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/ |
| D | DataStorage.cs | 17 …public static Stream Create(string imageFile, long? size = null, bool persistent = false, byte pad… in Create() argument 20 return CreateFromFile(imageFile, size, persistent, paddingByte); in Create() 23 …public static Stream CreateFromFile(string imageFile, long? size = null, bool persistent = false, … in CreateFromFile() argument 30 if(!persistent) in CreateFromFile()
|
| D | LBABackend.cs | 22 …end(string underlyingFile, int? numberOfBlocks = null, int blockSize = 512, bool persistent = true) in LBABackend() argument 29 this.persistent = persistent; in LBABackend() 100 if(!persistent) in Touch() 118 private readonly bool persistent; field in Antmicro.Renode.Storage.LBABackend
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/ |
| D | MassStorageExtensions.cs | 16 …ripheralRegister<IUSBPeripheral, USBRegistrationPoint> attachTo, byte port, bool persistent = true) in PendriveFromFile() argument 20 var pendrive = new MassStorage(file, persistent: persistent); in PendriveFromFile()
|
| D | MassStorage.cs | 55 …age(string underlyingFile, int? numberOfBlocks = null, int blockSize = 512, bool persistent = true) in MassStorage() argument 57 lbaBackend = new LBABackend(underlyingFile, numberOfBlocks, blockSize, persistent); in MassStorage()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/TAPHelper/ |
| D | TAPTools.cs | 94 private static int Open_TUNTAP(IntPtr dev, UInt16 flags, bool persistent) in Open_TUNTAP() argument 132 if(persistent) in Open_TUNTAP() 163 public static int OpenTUN(IntPtr dev, bool persistent = false) in OpenTUN() argument 165 return Open_TUNTAP(dev, IFF_TUN, persistent); in OpenTUN() 168 public static int OpenTAP(IntPtr dev, bool persistent = false) in OpenTAP() argument 170 return Open_TUNTAP(dev, IFF_TAP_IFF_NO_PI, persistent); in OpenTAP()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/ |
| D | USBPendrive.cs | 30 …heralRegister<IUSBDevice, NumberRegistrationPoint<int>> attachTo, int port, bool persistent = true) in PendriveFromFile() argument 32 var pendrive = new USBPendrive(file, persistent: persistent); in PendriveFromFile() 37 …oid PendriveFromFile(this USBIPServer usbController, string file, bool persistent = true, int? por… in PendriveFromFile() argument 39 var pendrive = new USBPendrive(file, persistent: persistent); in PendriveFromFile() 46 …public USBPendrive(string imageFile, long? size = null, bool persistent = false, uint blockSize = … in USBPendrive() argument 49 dataBackend = DataStorage.Create(imageFile, size, persistent); in USBPendrive()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/ |
| D | VirtIOBlockDevice.cs | 45 public void LoadImage(WriteFilePath file, bool persistent = false) in LoadImage() argument 48 storage = DataStorage.Create(file, persistent: persistent); in LoadImage()
|
| D | UFSDevice.cs | 97 public void LoadFromFile(uint logicalUnitNumber, string file, bool persistent = false) in LoadFromFile() argument 105 dataBackends[logicalUnitNumber] = DataStorage.Create(file, persistent: persistent); in LoadFromFile()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/ |
| D | CDROM.cs | 26 … public CDROM(string imageFile, bool persistent = false, uint? size = null, uint blockSize = 2048) in CDROM() argument 29 dataBackend = DataStorage.Create(imageFile, size, persistent); in CDROM()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/ |
| D | SamsungK9NANDFlash.cs | 46 …backingStream = DataStorage.Create(fileName, persistent: !nonPersistent, paddingByte: ErasedValue); in SamsungK9NANDFlash()
|