Lines Matching refs:end
1180 int end; in parseVersions()
1192 end = output.IndexOf('\n', res += 9); in parseVersions()
1193 if (end < 0) in parseVersions()
1197 sw_ver_str = output.Substring(res, end - res); in parseVersions()
1212 end = output.IndexOf('\n', res += 9); in parseVersions()
1213 if (end < 0) in parseVersions()
1217 fw_ver_str = output.Substring(res, end - res); in parseVersions()
1250 end = output.IndexOf('\n', res += 4); in parseVersions()
1251 if (end < 0) in parseVersions()
1256 string[] sdk = output.Substring(res, end - res).Split(delims); in parseVersions()
1349 int end = output.IndexOf('\n', res); in hoststop()
1350 if (end < 0) in hoststop()
1356 output = output.Substring(res, end - res); in hoststop()
1379 int end = output.IndexOf("\n", res += 8); in hoststop()
1380 if (end < 0) in hoststop()
1384 string old = output.Substring(res, (end - 1) - res); in hoststop()
1390 end = output.IndexOf("\n", res += 8); in hoststop()
1391 if (end < 0) in hoststop()
1395 string host = output.Substring(res, (end - 1) - res); in hoststop()
1418 int end = output.IndexOf(')', res += 20); in hoststop()
1419 if (end < 0) in hoststop()
1425 …ROR err = parseVersions(output, checkMionVersion, int.Parse(output.Substring(res, end - res)) > 1); in hoststop()