Lines Matching refs:pBytesRead

209         sal_uInt64 * pBytesRead);
221 sal_uInt64 * pBytesRead);
232 sal_uInt64 * pBytesRead);
402 sal_uInt64 * pBytesRead) in readAt() argument
425 *pBytesRead = nBytes; in readAt()
466 sal_uInt64 * pBytesRead) in readFileAt() argument
474 *pBytesRead = nBytes; in readFileAt()
480 return readAt (nOffset, pBuffer, nBytesRequested, pBytesRead); in readFileAt()
485 for (*pBytesRead = 0; nBytesRequested > 0; ) in readFileAt()
501 result = readAt (nOffset, &(buffer[*pBytesRead]), nBytesRequested, &uDone); in readFileAt()
505 nBytesRequested -= uDone, *pBytesRead += uDone; in readFileAt()
525 memcpy (&(buffer[*pBytesRead]), &(m_buffer[bufpos]), bytes); in readFileAt()
526 nBytesRequested -= bytes, *pBytesRead += bytes, nOffset += bytes; in readFileAt()
604 sal_uInt64 * pBytesRead) in readLineAt() argument
644 *pBytesRead += curpos - bufpos, nOffset += curpos - bufpos; in readLineAt()
701 *pBytesRead += curpos - bufpos, nOffset += curpos - bufpos; in readLineAt()
1671 sal_uInt64 * pBytesRead) in osl_readFile() argument
1675 if ((0 == pImpl) || (-1 == pImpl->m_fd) || (0 == pBuffer) || (0 == pBytesRead)) in osl_readFile()
1685 pImpl->m_fileptr, pBuffer, nBytesRequested, pBytesRead); in osl_readFile()
1687 pImpl->m_fileptr += *pBytesRead; in osl_readFile()
1730 sal_uInt64* pBytesRead) in osl_readFileAt() argument
1734 if ((0 == pImpl) || (-1 == pImpl->m_fd) || (0 == pBuffer) || (0 == pBytesRead)) in osl_readFileAt()
1750 return pImpl->readFileAt (nOffset, pBuffer, nBytesRequested, pBytesRead); in osl_readFileAt()