Lines Matching refs:pTmp
411 char* pTmp = const_cast<char*>(line.c_str()); in ParseLineFields() local
414 while (pTmp != nullptr && *pTmp != '\n') { in ParseLineFields()
415 CHECK_TRUE(RemoveSpaces(&pTmp), count, "%s: RemoveSpaces failed!", __func__); in ParseLineFields()
416 if (*pTmp >= 'a' && *pTmp <= 'z') { in ParseLineFields()
419 int ret = sscanf_s(pTmp, "%63s %n", field, sizeof(field), &len); in ParseLineFields()
422 pTmp += len; in ParseLineFields()
425 CHECK_TRUE(FindFirstNum(&pTmp), count, "%s: FindFirstNum failed", __func__); in ParseLineFields()
426 num = strtoull(pTmp, &end, DEC_BASE); in ParseLineFields()
429 pTmp = end; in ParseLineFields()
440 char* pTmp = const_cast<char*>(line.c_str()); in ParseLineFields() local
442 while (pTmp != nullptr && *pTmp != '\n') { in ParseLineFields()
443 CHECK_TRUE(FindFirstNum(&pTmp), count, "%s: FindFirstNum failed", __func__); in ParseLineFields()
444 num = static_cast<uint32_t>(strtoull(pTmp, &end, DEC_BASE)); in ParseLineFields()
447 pTmp = end; in ParseLineFields()