Lines Matching refs:arguments
234 string arguments = (ip != null) ? "-ver -ip " + ip : "-ver"; in FW_SW_Version()
241 int ret = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, out output); in FW_SW_Version()
280 string arguments = "-ip " + ip + " -modedetect"; in boot_mode_detect()
287 int ret = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, out output); in boot_mode_detect()
306 internal static int start(string arguments, string fsemul_params) in start() argument
324 …return ProcessExecutor.StartProcess_RedirectOutput(exe_path, arguments + " " + fsemul_params, hand… in start()
438 internal static string Run(string arguments) in Run() argument
445 …int returnVal = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, true, MIONPS_TIMEOUT_MS, … in Run()
469 internal static int Run(string arguments) in Run() argument
476 …int returnVal = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, true, MIONURL_TIMEOUT_MS,… in Run()
1456 string arguments = "-uf " + default_ddf + " " + common_ddf_file + " "; in make()
1460 arguments += " " + individual_ddf_file; in make()
1465 arguments += " " + options; in make()
1468 return ProcessExecutor.DoProcess(exe_path, arguments); in make()