Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DSudoTools.cs48 string sudoName = FindSudoToolName(); in EnsureSudoProcess()
54 sudoProcess.StartInfo.Arguments = SudoDecorateCommand(sudoName, command, description); in EnsureSudoProcess()
55 sudoProcess.StartInfo.FileName = sudoName; in EnsureSudoProcess()
101 string sudoName = FindSudoToolName(); in SudoExecute()
103 command = SudoDecorateCommand(sudoName, command, description); in SudoExecute()
104 process = Process.Start(sudoName, command); in SudoExecute()
115 …private static string SudoDecorateCommand(string sudoName, string command, string description = "") in SudoDecorateCommand() argument
119 switch(sudoName) in SudoDecorateCommand()