Home
last modified time | relevance | path

Searched refs:Process (Results 1 – 12 of 12) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DSudoTools.cs28 …public static Process EnsureSudoExecute(string command, string arguments = "", string description … in EnsureSudoExecute()
30 Process process; in EnsureSudoExecute()
31 …process = Misc.IsRoot ? Process.Start(command, arguments) : SudoExecute(command + " " + arguments,… in EnsureSudoExecute()
41 public static void EnsureSudoProcess(Process process, string description = "") in EnsureSudoProcess()
47 Process sudoProcess = process; in EnsureSudoProcess()
99 private static Process SudoExecute(string command, string description = "") in SudoExecute()
102 Process process; in SudoExecute()
104 process = Process.Start(sudoName, command); in SudoExecute()
DTemporaryFilesManager.cs124 id = Process.GetCurrentProcess().Id.ToString(); in TemporaryFilesManager()
128 … id = string.Format("{0}-{1}", Process.GetCurrentProcess().Id, AppDomain.CurrentDomain.Id); in TemporaryFilesManager()
144 var proc = Process.GetProcessById(pid); in IsProcessAlive()
DMisc.cs741 var currentProcess = Process.GetCurrentProcess(); in TryGetRootDirectory()
1181 var verifyProc = new Process(); in IsCommandAvaialble()
/Renode-Infrastructure-v1.15.3-29f510e/src/UI/ConsoleBackendAnalyzers/
DPuttyProvider.cs15 protected override Process CreateProcess(string consoleName, string command) in CreateProcess()
17 var p = new Process(); in CreateProcess()
29 var proc = sender as Process; in CreateProcess()
DGnomeTerminalProvider.cs15 protected override Process CreateProcess(string consoleName, string command) in CreateProcess()
17 var p = new Process(); in CreateProcess()
31 var proc = sender as Process; in CreateProcess()
DProcessBasedProvider.cs70 protected abstract Process CreateProcess(string consoleName, string command); in CreateProcess()
82 private bool RunProcess(Process p) in RunProcess()
106 var p = new Process(); in CheckScreenTool()
117 private Process process;
DXTermProvider.cs15 protected override Process CreateProcess(string consoleName, string command) in CreateProcess()
17 var p = new Process(); in CreateProcess()
63 var proc = sender as Process; in CreateProcess()
DTerminalAppProvider.cs18 protected override Process CreateProcess(string consoleName, string command) in CreateProcess()
26 var p = new Process(); in CreateProcess()
40 var proc = sender as Process; in CreateProcess()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_KMAC.cs450 case Command.Process: in RunCommand()
646 case Command.Process: in CheckComandSequence()
651 error = previousCommand != Command.Process && previousCommand != Command.Run; in CheckComandSequence()
843 Process = 0x2e, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DLinuxTapInterface.cs169 var process = new Process(); in Init()
DWindowsTapInterface.cs170 using(var tapctlProcess = new Process()) in Init()
/Renode-Infrastructure-v1.15.3-29f510e/src/UI/
DCommandLineInterface.cs57 var pid = Process.GetCurrentProcess().Id; in Run()