Lines Matching defs:pszEnd
289 static int i_portParseNumber(uint16_t *pu16Port, const char *pszStart, const char *pszEnd)
292 * Note: pszStart <= pszEnd is expected, the string contains
293 * only digits and pszEnd points to the char after last
296 size_t cch = pszEnd - pszStart;
300 while (pszStart != pszEnd)
329 const char *pszEnd = pszStart;
331 while (*pszEnd && *pszEnd != ',')
333 if (*pszEnd == '-')
338 pszDash = pszEnd;
340 else if (!RT_C_IS_DIGIT(*pszEnd))
343 pszEnd++;
347 pszPortRange = pszEnd;
359 rc = i_portParseNumber(NULL, pszDash + 1, pszEnd);
362 rc = i_portParseNumber(NULL, pszStart, pszEnd);