Lines Matching refs:end
1144 int end; in parseVersions()
1156 end = output.IndexOf('\n', res += 9); in parseVersions()
1157 if (end < 0) in parseVersions()
1161 sw_ver_str = output.Substring(res, end - res); in parseVersions()
1176 end = output.IndexOf('\n', res += 9); in parseVersions()
1177 if (end < 0) in parseVersions()
1181 fw_ver_str = output.Substring(res, end - res); in parseVersions()
1214 end = output.IndexOf('\n', res += 4); in parseVersions()
1215 if (end < 0) in parseVersions()
1220 string[] sdk = output.Substring(res, end - res).Split(delims); in parseVersions()
1312 int end = output.IndexOf('\n', res); in hoststop()
1313 if (end < 0) in hoststop()
1319 output = output.Substring(res, end - res); in hoststop()
1342 int end = output.IndexOf("\n", res += 8); in hoststop()
1343 if (end < 0) in hoststop()
1347 string old = output.Substring(res, (end - 1) - res); in hoststop()
1353 end = output.IndexOf("\n", res += 8); in hoststop()
1354 if (end < 0) in hoststop()
1358 string host = output.Substring(res, (end - 1) - res); in hoststop()
1381 int end = output.IndexOf(')', res += 20); in hoststop()
1382 if (end < 0) in hoststop()
1388 …ROR err = parseVersions(output, checkMionVersion, int.Parse(output.Substring(res, end - res)) > 1); in hoststop()