Lines Matching refs:output

147         internal static int CheckName(ref string output)  in CheckName()  argument
156 int returnVal = ProcessExecutor.DoProcess_GetOutput(exe_path, args, out output); in CheckName()
163 string output = string.Empty; in CheckName()
164 return CheckName(ref output); in CheckName()
174 string output = string.Empty; in CheckName_IPOnly()
176 …exe_path, "-s -ip " + Environment.GetEnvironmentVariable("BRIDGE_CURRENT_IP_ADDRESS"), out output); in CheckName_IPOnly()
177 Console.Write(output); in CheckName_IPOnly()
223 string output = string.Empty; in makemine()
224 …ip " + Environment.GetEnvironmentVariable("BRIDGE_CURRENT_IP_ADDRESS") + " -makemine", out output); in makemine()
225 Console.Write(output); in makemine()
246 string output = string.Empty; in FW_SW_Version()
247 int ret = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, out output); in FW_SW_Version()
262 int realOutputStartIndex = output.IndexOf("Firmware version"); in FW_SW_Version()
265 string realOutput = output.Substring(realOutputStartIndex); in FW_SW_Version()
304 string output = string.Empty; in boot_mode_detect()
305 int ret = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, out output); in boot_mode_detect()
320 boot_mode = output.Trim(); in boot_mode_detect()
358 string output = string.Empty; in rsthold()
362 …nment.GetEnvironmentVariable("BRIDGE_CURRENT_IP_ADDRESS") + " -rsthold " + arg_string, out output); in rsthold()
365 Console.Write(output); in rsthold()
375 string output = string.Empty; in forceOff1()
379 …ent.GetEnvironmentVariable("BRIDGE_CURRENT_IP_ADDRESS") + " -forceOff1 " + arg_string, out output); in forceOff1()
382 Console.Write(output); in forceOff1()
392 string output = string.Empty; in init_shutdown_w_FOFF2()
396 …Variable("BRIDGE_CURRENT_IP_ADDRESS") + " -init_shutdown_w_FOFF2 60000 " + arg_string, out output); in init_shutdown_w_FOFF2()
399 Console.Write(output); in init_shutdown_w_FOFF2()
409 string output = string.Empty; in forceOff2_off_single_cgi()
413 …entVariable("BRIDGE_CURRENT_IP_ADDRESS") + " -forceOff2_off_single_cgi " + arg_string, out output); in forceOff2_off_single_cgi()
416 Console.Write(output); in forceOff2_off_single_cgi()
429 internal static int Reboot(out string output) in Reboot() argument
435 return ProcessExecutor.DoProcess_GetOutput(exe_path, "-reboot", out output); in Reboot()
438 internal static int Run(out string output) in Run() argument
444 return ProcessExecutor.DoProcess_GetOutput(exe_path, null, out output); in Run()
462 string output = string.Empty; in Run()
463 …al = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, true, MIONPS_TIMEOUT_MS, out output); in Run()
466 output = output.Replace("\r\n", ""); in Run()
472 Console.WriteLine(output); in Run()
475 return output; in Run()
493 string output = string.Empty; in Run()
494 …l = ProcessExecutor.DoProcess_GetOutput(exe_path, arguments, true, MIONURL_TIMEOUT_MS, out output); in Run()
497 output = output.Replace("\r\n", ""); in Run()
503 Console.WriteLine(output); in Run()
517 internal static int GetSessionInfo(out string output) in GetSessionInfo() argument
523 …(exe_path, "-p NAME DEBUG_OUT DEBUG_CONTROL HIO_OUT LAUNCH_CTRL NET_MANAGE PCFS_SATA", out output); in GetSessionInfo()
1323 string output = string.Empty; in sync()
1324 …Executor.DoProcess_GetOutput(exe_path, "-cfgxml " + cfg + " " + src + " " + dst + " ", out output); in sync()
1327 sw.Write(output); in sync()
1399 string output = string.Empty; in make()
1400 …tput(exe_path, quiet + " -i 0x20008000 -j 0x20008800 -o " + bsf_file + " -f " + flags, out output); in make()
1401 if (!string.IsNullOrEmpty(output)) in make()
1403 Console.Write(output); in make()
1989 string output = string.Empty; in start()
1991 …t " + timeout + " -p " + Environment.GetEnvironmentVariable("SESSION_DEBUG_OUT_PORT"), out output); in start()
2001 sw.WriteLine(output); in start()
2014 string output = string.Empty; in start_redirectionCallback()