Home
last modified time | relevance | path

Searched refs:persistent (Results 1 – 15 of 15) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCardExtensions.cs17 …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()
DDeprecatedSDCard.cs19 public DeprecatedSDCard(string imageFile, long? cardSize, bool persistent) in DeprecatedSDCard() argument
27 if(!persistent) in DeprecatedSDCard()
DSDCard.cs31 …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/
DTapExtensions.cs19 …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()
DLinuxTapInterface.cs33 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/
DDataStorage.cs17 …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()
DLBABackend.cs22 …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/
DMassStorageExtensions.cs16 …ripheralRegister<IUSBPeripheral, USBRegistrationPoint> attachTo, byte port, bool persistent = true) in PendriveFromFile() argument
20 var pendrive = new MassStorage(file, persistent: persistent); in PendriveFromFile()
DMassStorage.cs55 …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/
DTAPTools.cs94 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/
DUSBPendrive.cs30 …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/
DVirtIOBlockDevice.cs45 public void LoadImage(WriteFilePath file, bool persistent = false) in LoadImage() argument
48 storage = DataStorage.Create(file, persistent: persistent); in LoadImage()
DUFSDevice.cs97 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/
DCDROM.cs26 … 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/
DSamsungK9NANDFlash.cs46 …backingStream = DataStorage.Create(fileName, persistent: !nonPersistent, paddingByte: ErasedValue); in SamsungK9NANDFlash()