Lines Matching refs:output

635                 string output = string.Empty;  in InitialEnvVarSetup()
636 SessionManagerUtil.GetSessionInfo(out output); in InitialEnvVarSetup()
638 string[] output_array = output.Split(' '); in InitialEnvVarSetup()
1141 static CAFEX_ERROR parseVersions(string output, bool checkMionVersion, bool checkSdk) in parseVersions() argument
1151 res = output.IndexOf("software:"); in parseVersions()
1156 end = output.IndexOf('\n', res += 9); in parseVersions()
1161 sw_ver_str = output.Substring(res, end - res); in parseVersions()
1171 res = output.IndexOf("firmware:"); in parseVersions()
1176 end = output.IndexOf('\n', res += 9); in parseVersions()
1181 fw_ver_str = output.Substring(res, end - res); in parseVersions()
1209 res = output.IndexOf("sdk:"); in parseVersions()
1214 end = output.IndexOf('\n', res += 4); in parseVersions()
1220 string[] sdk = output.Substring(res, end - res).Split(delims); in parseVersions()
1277 string output = string.Empty; in hoststop()
1300 res = checkbridgename.CheckName(ref output); in hoststop()
1304 res = output.IndexOf("ERROR :"); in hoststop()
1307output = string.Format("Bridge with the name '{0}' was not found", BRIDGE_CURRENT_NAME.value); in hoststop()
1312 int end = output.IndexOf('\n', res); in hoststop()
1315 output = output.Substring(res); in hoststop()
1319 output = output.Substring(res, end - res); in hoststop()
1322 Console.WriteLine("CheckBridgeName: {0}", output); in hoststop()
1328 if (output.Contains("INFO: CGI Reset")) in hoststop()
1337 res = output.IndexOf("oldhost:"); in hoststop()
1342 int end = output.IndexOf("\n", res += 8); in hoststop()
1347 string old = output.Substring(res, (end - 1) - res); in hoststop()
1348 res = output.IndexOf("curhost:"); in hoststop()
1353 end = output.IndexOf("\n", res += 8); in hoststop()
1358 string host = output.Substring(res, (end - 1) - res); in hoststop()
1366 return parseVersions(output, checkMionVersion, true); in hoststop()
1373 res = output.IndexOf("INFO: Display info "); in hoststop()
1377 if (output[res + 19] != '(') in hoststop()
1381 int end = output.IndexOf(')', res += 20); in hoststop()
1388 …CAFEX_ERROR err = parseVersions(output, checkMionVersion, int.Parse(output.Substring(res, end - re… in hoststop()
1460 output = string.Empty; in hoststop()
1461 int miontelnet_ret = miontelnet.Run(out output); in hoststop()
1462 sw.Write(output); in hoststop()