Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DConfigurationManager.cs63 …).Name, group, name, Enum.GetNames(typeof(T)).Aggregate((x, y) => x + ", " + y), Config.FileName)); in Get()
97 public string FilePath => Config.FileName;
145 FileName = filePath; in ConfigSource()
154 using(var locker = new FileLocker(FileName + ConfigurationLockSuffix))
156 if(File.Exists(FileName))
160 source = new IniConfigSource(FileName);
164 … Logger.Log(LogLevel.Warning, "Configuration file {0} exists, but it cannot be read.", FileName);
170 source.Save(FileName);
180 public string FileName { get; private set; } property in Antmicro.Renode.Utilities.ConfigSource
DSudoTools.cs49 if(string.IsNullOrWhiteSpace(sudoProcess.StartInfo.FileName)) in EnsureSudoProcess()
53 var command = sudoProcess.StartInfo.FileName + " " + sudoProcess.StartInfo.Arguments; in EnsureSudoProcess()
55 sudoProcess.StartInfo.FileName = sudoName; in EnsureSudoProcess()
DMisc.cs742 var currentModulePath = Path.GetFullPath(currentProcess.MainModule.FileName); in TryGetRootDirectory()
1187 verifyProc.StartInfo.FileName = "which"; in IsCommandAvaialble()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DBinaryFingerprint.cs25 FileName = Path.GetFullPath(file); in BinaryFingerprint()
28 public string FileName { get; private set; } property in Antmicro.Renode.Core.BinaryFingerprint
40 return string.Format("Binary {0}: {1}", FileName, Hash); in ToString()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DLinuxTapInterface.cs172 process.StartInfo.FileName = "dotnet"; in Init()
174 process.StartInfo.FileName = "mono"; in Init()
DWindowsTapInterface.cs173 tapctlProcess.StartInfo.FileName = tapctlPath; in Init()
/Renode-Infrastructure-v1.15.3-29f510e/src/UI/ConsoleBackendAnalyzers/
DProcessBasedProvider.cs93 … Logger.LogAs(this, LogLevel.Warning, "Could not find binary: {0}", p.StartInfo.FileName); in RunProcess()