Lines Matching refs:pChr
1364 sal_Char* pChr; in OslProfile_getLine() local
1407 for (pChr = pFile->m_pReadPtr; in OslProfile_getLine()
1408 (*pChr != '\n') && (*pChr != '\r') && (*pChr != '\0') && in OslProfile_getLine()
1409 (pChr < (pFile->m_ReadBuf + sizeof(pFile->m_ReadBuf) - 1)); in OslProfile_getLine()
1410 pChr++); in OslProfile_getLine()
1412 Max = pChr - pFile->m_pReadPtr; in OslProfile_getLine()
1424 if (pChr < (pFile->m_ReadBuf + sizeof(pFile->m_ReadBuf) - 1)) in OslProfile_getLine()
1426 if (*pChr != '\0') in OslProfile_getLine()
1428 if ((pChr[0] == '\r') && (pChr[1] == '\n')) in OslProfile_getLine()
1429 pChr += 2; in OslProfile_getLine()
1431 pChr += 1; in OslProfile_getLine()
1434 if ((pChr < (pFile->m_ReadBuf + sizeof(pFile->m_ReadBuf))) && in OslProfile_getLine()
1435 (*pChr == '\0')) in OslProfile_getLine()
1436 pChr = pFile->m_ReadBuf + sizeof(pFile->m_ReadBuf); in OslProfile_getLine()
1442 pFile->m_pReadPtr = pChr; in OslProfile_getLine()