Lines Matching refs:pBytesRead

114 		sal_uInt64 * pBytesRead);
126 sal_uInt64 * pBytesRead);
137 sal_uInt64 * pBytesRead);
339 sal_uInt64 * pBytesRead) in readAt() argument
380 *pBytesRead = nBytes; in readAt()
431 sal_uInt64 * pBytesRead) in readFileAt() argument
439 *pBytesRead = nBytes; in readFileAt()
445 return readAt (nOffset, pBuffer, nBytesRequested, pBytesRead); in readFileAt()
450 for (*pBytesRead = 0; nBytesRequested > 0; ) in readFileAt()
467 result = readAt (nOffset, &(buffer[*pBytesRead]), nBytesRequested, &uDone); in readFileAt()
471 nBytesRequested -= uDone, *pBytesRead += uDone; in readFileAt()
491 memcpy (&(buffer[*pBytesRead]), &(m_buffer[bufpos]), bytes); in readFileAt()
492 nBytesRequested -= bytes, *pBytesRead += bytes, nOffset += bytes; in readFileAt()
571 sal_uInt64 * pBytesRead) in readLineAt() argument
611 *pBytesRead += curpos - bufpos, nOffset += curpos - bufpos; in readLineAt()
668 *pBytesRead += curpos - bufpos, nOffset += curpos - bufpos; in readLineAt()
1154 sal_uInt64 * pBytesRead) in osl_readFile() argument
1158 if ((0 == pImpl) || (-1 == pImpl->m_fd) || (0 == pBuffer) || (0 == pBytesRead)) in osl_readFile()
1169 pImpl->m_fileptr, pBuffer, nBytesRequested, pBytesRead); in osl_readFile()
1171 pImpl->m_fileptr += *pBytesRead; in osl_readFile()
1215 sal_uInt64* pBytesRead) in osl_readFileAt() argument
1219 if ((0 == pImpl) || (-1 == pImpl->m_fd) || (0 == pBuffer) || (0 == pBytesRead)) in osl_readFileAt()
1236 return pImpl->readFileAt (nOffset, pBuffer, nBytesRequested, pBytesRead); in osl_readFileAt()