Home
last modified time | relevance | path

Searched defs:path (Results 1 – 25 of 62) sorted by relevance

123

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DFilePath.cs18 public FilePath(string path, FileAccess fileAccess, bool validate = true) in FilePath()
88 protected readonly string path; field in Antmicro.Renode.Utilities.FilePath
94 public ReadFilePath(string path) : base(path, FileAccess.Read) {} in ReadFilePath()
96 public static implicit operator ReadFilePath(string path) in operator ReadFilePath()
104 public OptionalReadFilePath(string path) : base(path, FileAccess.Read, false) in OptionalReadFilePath()
117 public static implicit operator OptionalReadFilePath(string path) in operator OptionalReadFilePath()
130 public AppendFilePath(string path) : base(path, FileAccess.Write) {} in AppendFilePath()
132 public static implicit operator AppendFilePath(string path) in operator AppendFilePath()
140 public WriteFilePath(string path) : base(path, FileAccess.Write) {} in WriteFilePath()
156 public static implicit operator WriteFilePath(string path) in operator WriteFilePath()
[all …]
DTypeManager.cs85 public bool ScanFile(string path, bool bundled = false) in ScanFile()
103 public void Scan(string path, bool recursive = false) in Scan()
268 private void ScanInner(string path, bool recursive) in ScanInner()
344 private Type GetTypeWithLazyLoad(string name, string assemblyFullName, string path) in GetTypeWithLazyLoad()
477 private bool AnalyzeAssembly(string path, bool bundled = false, bool throwOnBadImage = true) in AnalyzeAssembly()
671 private AssemblyDescription GetAssemblyDescription(string fullName, string path) in GetAssemblyDescription()
804 public AssemblyDescription(string fullName, string path) in AssemblyDescription()
DSharedLibraries.cs36 public static IntPtr LoadLibrary(string path) in LoadLibrary()
46 public static bool TryLoadLibrary(string path, out IntPtr address) in TryLoadLibrary()
107 public static IEnumerable<string> GetAllSymbols(string path) in GetAllSymbols()
DSnapshotTracker.cs56 public void Save(TimeInterval timeStamp, string path) in Save()
103 public SnapshotDescriptor(TimeInterval timeStamp, string path) in SnapshotDescriptor()
DTemporaryFilesManager.cs58 … public bool TryCreateFile(string fileName, out string path, bool overwriteExistingFile = false) in TryCreateFile()
159 private void ClearDirectory(string path) in ClearDirectory()
DWindowsFileLocker.cs57 private readonly string path; field in Antmicro.Renode.Utilities.WindowsFileLocker
DICanLoadFiles.cs19 void LoadFileChunks(string path, IEnumerable<FileChunk> chunks, ICPU cpu); in LoadFileChunks()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DLoggerFileCommand.cs27 public void Run(StringToken path) in Run()
33 public void Run(StringToken path, BooleanToken token) in Run()
38 private void InnerRun(string path, bool flushAfterEveryWrite) in InnerRun()
DMonitorPathCommand.cs35 …SetOrAdd(ICommandInteraction writer, [Values( "set", "add")] LiteralToken action, StringToken path) in SetOrAdd()
57 …public MonitorPathCommand(Monitor monitor, MonitorPath path) : base(monitor, "path", "allows modif… in MonitorPathCommand()
DIncludeFileCommand.cs34 public bool Run(ICommandInteraction writer, StringToken path) in Run()
39 private bool Run(ICommandInteraction writer, ReadFilePath path) in Run()
DStartCommand.cs35 public void Run(ICommandInteraction writer, StringToken path) in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DUartFileBackend.cs22 … public static void CreateFileBackend(this IUART uart, string path, bool immediateFlush = false) in CreateFileBackend()
36 public static void CloseFileBackend(this IUART uart, string path) in CloseFileBackend()
57 public UartFileBackend(SequencedFilePath path, IUART uart, bool immediateFlush = false) in UartFileBackend()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorPath.cs31 public void PushWorkingDirectory(string path) in PushWorkingDirectory()
48 private List<string> GetDirEntries(string path) in GetDirEntries()
89 public void Append(string path) in Append()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DRiscVInstructionPythonEngine.cs23 …PythonEngine(BaseRiscV cpu, string pattern, string script = null, OptionalReadFilePath path = null) in RiscVInstructionPythonEngine()
79 private readonly string path; field in Antmicro.Renode.Hooks.RiscVInstructionPythonEngine
DRiscVCpuHooksExtensions.cs22 …public static void RegisterCSRHandlerFromFile(this BaseRiscV cpu, ulong csr, string path, bool ini… in RegisterCSRHandlerFromFile()
34 …tatic void InstallCustomInstructionHandlerFromFile(this BaseRiscV cpu, string pattern, string path) in InstallCustomInstructionHandlerFromFile()
DRiscVCsrPythonEngine.cs23 …ne(BaseRiscV cpu, ulong csr, bool initable, string script = null, OptionalReadFilePath path = null) in RiscVCsrPythonEngine()
121 private readonly string path; field in Antmicro.Renode.Hooks.RiscVCsrPythonEngine
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DTraceWriterBuilder.cs16 …public TraceWriterBuilder(TranslationCPU cpu, SequencedFilePath path, TraceFormat format, bool isB… in TraceWriterBuilder()
64 private readonly string path; field in Antmicro.Renode.Peripherals.CPU.TraceWriterBuilder
DTraceTextWriter.cs27 public TraceTextWriter(TranslationCPU cpu, string path, TraceFormat format, bool compress) in TraceTextWriter()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Sensor/
DSensorSamplesFifo.cs55 …amplesFromBinaryFile(IMachine machine, IPeripheral owner, string name, string path, string delaySt… in FeedSamplesFromBinaryFile()
86 public void FeedSamplesFromFile(string path, Func<string[], T> sampleConstructor = null) in FeedSamplesFromFile() argument
153 private IEnumerable<T> ParseSamplesFile(string path, Func<string[], T> sampleConstructor) in ParseSamplesFile() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/TAPHelper/
DDynamicModuleSpawner.cs40 … private static void GenerateTAPHelper(string path, string filename, string extensionsAssemblyPath) in GenerateTAPHelper()
DDynamicModuleSpawner_NET.cs47 private static void GenerateTAPHelper(string path, string filename) in GenerateTAPHelper()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DGenericSPISensor.cs44 public void FeedSamplesFromFile(string path) in FeedSamplesFromFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Analog/
DEOSS3_ADC.cs38 public void FeedSample(string path, uint channelNo, int repeat = 1) in FeedSample()
62 private IEnumerable<Sample> ParseSamplesFile(string path) in ParseSamplesFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DEmulationManager.cs97 public void Load(ReadFilePath path) in Load()
126 public void Save(string path) in Save()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DAMDCFIFlash.cs62 …public void AddBackingFile(ReadFilePath path, long offset, int size, bool read = true, bool write … in AddBackingFile()
446 public BackingFile(int size, FilePath path) in BackingFile()
453 public readonly FilePath path; field in Antmicro.Renode.Peripherals.MTD.AMDCFIFlash.BackingFile

123