Lines Matching refs:pTmp
295 char* pTmp = const_cast<char*>(line.c_str()); in ParseLineFields() local
298 while (pTmp != nullptr && *pTmp != '\n') { in ParseLineFields()
299 CHECK_TRUE(RemoveSpaces(&pTmp), count, "%s: RemoveSpaces failed!", __func__); in ParseLineFields()
300 if (*pTmp >= 'a' && *pTmp <= 'z') { in ParseLineFields()
303 int ret = sscanf_s(pTmp, "%63s %n", field, sizeof(field), &len); in ParseLineFields()
306 pTmp += len; in ParseLineFields()
309 CHECK_TRUE(FindFirstNum(&pTmp), count, "%s: FindFirstNum failed", __func__); in ParseLineFields()
310 num = strtoull(pTmp, &end, DEC_BASE); in ParseLineFields()
313 pTmp = end; in ParseLineFields()
324 char* pTmp = const_cast<char*>(line.c_str()); in ParseLineFields() local
326 while (pTmp != nullptr && *pTmp != '\n') { in ParseLineFields()
327 CHECK_TRUE(FindFirstNum(&pTmp), count, "%s: FindFirstNum failed", __func__); in ParseLineFields()
328 num = static_cast<uint32_t>(strtoull(pTmp, &end, DEC_BASE)); in ParseLineFields()
331 pTmp = end; in ParseLineFields()