Lines Matching refs:pTmp
371 char* pTmp = const_cast<char*>(line.c_str()); in ParseLineFields() local
374 while (pTmp != nullptr && *pTmp != '\n') { in ParseLineFields()
375 CHECK_TRUE(RemoveSpaces(&pTmp), count, "%s: RemoveSpaces failed!", __func__); in ParseLineFields()
376 if (*pTmp >= 'a' && *pTmp <= 'z') { in ParseLineFields()
379 int ret = sscanf_s(pTmp, "%63s %n", field, sizeof(field), &len); in ParseLineFields()
382 pTmp += len; in ParseLineFields()
385 CHECK_TRUE(FindFirstNum(&pTmp), count, "%s: FindFirstNum failed", __func__); in ParseLineFields()
386 num = strtoull(pTmp, &end, DEC_BASE); in ParseLineFields()
389 pTmp = end; in ParseLineFields()
400 char* pTmp = const_cast<char*>(line.c_str()); in ParseLineFields() local
402 while (pTmp != nullptr && *pTmp != '\n') { in ParseLineFields()
403 CHECK_TRUE(FindFirstNum(&pTmp), count, "%s: FindFirstNum failed", __func__); in ParseLineFields()
404 num = static_cast<uint32_t>(strtoull(pTmp, &end, DEC_BASE)); in ParseLineFields()
407 pTmp = end; in ParseLineFields()