Home
last modified time | relevance | path

Searched refs:filePath (Results 1 – 16 of 16) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorExecutorExtensions.cs27 public static void ExecutePythonFromFile(this IMachine machine, ReadFilePath filePath) in ExecutePythonFromFile() argument
29 machine.ExecutePython(ReadScriptFromFile(filePath)); in ExecutePythonFromFile()
42 …utePythonEveryFromFile(this IMachine machine, string name, int milliseconds, ReadFilePath filePath) in ExecutePythonEveryFromFile() argument
44 machine.ExecutePythonEvery(name, milliseconds, ReadScriptFromFile(filePath)); in ExecutePythonEveryFromFile()
61 private static string ReadScriptFromFile(ReadFilePath filePath) in ReadScriptFromFile() argument
65 return File.ReadAllText(filePath); in ReadScriptFromFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/ICM20948/
DICM20948_Thermometer.cs16 public void FeedTemperatureSamplesFromRESD(ReadFilePath filePath, uint channelId = 0, in FeedTemperatureSamplesFromRESD() argument
20 …resdTemperatureStream = this.CreateRESDStream<TemperatureSample>(filePath, channelId, sampleOffset… in FeedTemperatureSamplesFromRESD()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/
DFileBackend.cs17 public FileBackend(SequencedFilePath filePath, bool flushAfterEachWrite = false) in FileBackend() argument
19 … var stream = File.Open(filePath, FileMode.Create, FileAccess.Write, FileShare.ReadWrite); in FileBackend()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/RESD/
DLowLevelRESDParser.cs22 filePath = path; in LowLevelRESDParser()
38 public string FilePath => serializedBuffer == null ? filePath : null;
46 return new SafeBinaryReader(File.OpenRead(filePath)); in GetNewReader()
227 private readonly string filePath; field in Antmicro.Renode.Utilities.RESD.LowLevelRESDParser
/Renode-Infrastructure-v1.15.3-29f510e/src/UI/
DCommandLineInterface.cs220 var filePath = string.Format("{0}{1}", in PrepareShell()
224 switch(Path.GetExtension(filePath)) in PrepareShell()
228 commandToInject = string.Format("Load {0}\n", filePath); in PrepareShell()
231 commandToInject = string.Format("i {0}\n", filePath); in PrepareShell()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DHS3001.cs44 public void FeedTemperatureSamplesFromRESD(ReadFilePath filePath, uint channelId = 0, in FeedTemperatureSamplesFromRESD() argument
48 …resdTemperatureStream = this.CreateRESDStream<TemperatureSample>(filePath, channelId, sampleOffset… in FeedTemperatureSamplesFromRESD()
51 public void FeedHumiditySamplesFromRESD(ReadFilePath filePath, uint channelId = 0, in FeedHumiditySamplesFromRESD() argument
55 …resdHumidityStream = this.CreateRESDStream<HumiditySample>(filePath, channelId, sampleOffsetType, … in FeedHumiditySamplesFromRESD()
DAK0991x.cs27 public void FeedMagneticSamplesFromRESD(ReadFilePath filePath, uint channelId = 0, in FeedMagneticSamplesFromRESD() argument
31 …magResdStream = this.CreateRESDStream<MagneticSample>(filePath, channelId, sampleOffsetType, sampl… in FeedMagneticSamplesFromRESD()
32 this.Log(LogLevel.Noisy, "RESD stream set to {0}", filePath); in FeedMagneticSamplesFromRESD()
DAS6221.cs36 public void FeedSamplesFromRESD(ReadFilePath filePath, uint channelId = 0, in FeedSamplesFromRESD() argument
39 …resdStream = this.CreateRESDStream<TemperatureSample>(filePath, channelId, sampleOffsetType, sampl… in FeedSamplesFromRESD()
DMAX30208.cs37 public void FeedSamplesFromRESD(ReadFilePath filePath, uint channelId = 0, in FeedSamplesFromRESD() argument
40 …resdStream = this.CreateRESDStream<TemperatureSample>(filePath, channelId, sampleOffsetType, sampl… in FeedSamplesFromRESD()
DMAX86171.cs54 …public void FeedSamplesFromRESD(ReadFilePath filePath, uint channelId = 0, ulong startTimestamp = … in FeedSamplesFromRESD() argument
62 …resdStream = this.CreateRESDStream<MAX86171_AFESample>(filePath, channelId, sampleOffsetType, samp… in FeedSamplesFromRESD()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DConfigurationManager.cs143 public ConfigSource(string filePath) in ConfigSource() argument
145 FileName = filePath; in ConfigSource()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Analog/
DRenesasDA14_GPADC.cs38 … public void FeedSamplesFromRESD(ReadFilePath filePath, uint adcChannel, uint resdChannel = 0, in FeedSamplesFromRESD() argument
44 …resdStream[adcChannel] = this.CreateRESDStream<VoltageSample>(filePath, resdChannel, sampleOffsetT… in FeedSamplesFromRESD()
DCAES_ADC.cs39 … public void FeedSamplesFromRESD(ReadFilePath filePath, uint adcChannel, uint resdChannel = 0, in FeedSamplesFromRESD() argument
45 …resdStream[adcChannel] = this.CreateRESDStream<VoltageSample>(filePath, resdChannel, sampleOffsetT… in FeedSamplesFromRESD()
DSAM4S_ADC.cs43 …public void FeedSamplesFromRESD(ReadFilePath filePath, int channelIndex, uint? resdChannelOverride… in FeedSamplesFromRESD() argument
49 …channelStream[channelIndex] = this.CreateRESDStream<VoltageSample>(filePath, resdChannel, sampleOf… in FeedSamplesFromRESD()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DResdCommand.cs45 …tion writer, [Values("load")] LiteralToken action, LiteralToken internalName, StringToken filePath) in Run() argument
55 resdFiles[internalName.Value] = new LowLevelRESDParser(filePath.Value); in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_BigNumberAccelerator.cs79 public void LoadELF(string filePath) in LoadELF() argument
81 using(var elf = ELFUtils.LoadELF(filePath)) in LoadELF()