Lines Matching refs:pBytesRead

106 		sal_uInt64 * pBytesRead);
118 sal_uInt64 * pBytesRead);
129 sal_uInt64 * pBytesRead);
297 sal_uInt64 * pBytesRead) in readAt() argument
320 *pBytesRead = dwDone; in readAt()
361 sal_uInt64 * pBytesRead) in readFileAt() argument
374 *pBytesRead = dwDone; in readFileAt()
380 return readAt (nOffset, pBuffer, nBytesRequested, pBytesRead); in readFileAt()
385 for (*pBytesRead = 0; nBytesRequested > 0; ) in readFileAt()
402 result = readAt (nOffset, &(buffer[*pBytesRead]), nBytesRequested, &uDone); in readFileAt()
406 nBytesRequested -= sal::static_int_cast< DWORD >(uDone), *pBytesRead += uDone; in readFileAt()
424 memcpy (&(buffer[*pBytesRead]), &(m_buffer[bufpos]), bytes); in readFileAt()
425 nBytesRequested -= bytes, *pBytesRead += bytes, nOffset += bytes; in readFileAt()
507 sal_uInt64 * pBytesRead) in readLineAt() argument
547 *pBytesRead += curpos - bufpos, nOffset += curpos - bufpos; in readLineAt()
604 *pBytesRead += curpos - bufpos, nOffset += curpos - bufpos; in readLineAt()
913 sal_uInt64 * pBytesRead) in osl_readFile() argument
916 if ((0 == pImpl) || !IsValidHandle(pImpl->m_hFile) || (0 == pBuffer) || (0 == pBytesRead)) in osl_readFile()
922 pImpl->m_filepos, pBuffer, uBytesRequested, pBytesRead); in osl_readFile()
924 pImpl->m_filepos += *pBytesRead; in osl_readFile()
957 sal_uInt64* pBytesRead) in osl_readFileAt() argument
961 if ((0 == pImpl) || !IsValidHandle(pImpl->m_hFile) || (0 == pBuffer) || (0 == pBytesRead)) in osl_readFileAt()
973 return pImpl->readFileAt (nOffset, pBuffer, uBytesRequested, pBytesRead); in osl_readFileAt()