Lines Matching refs:nCount

160 											 sal_uLong nCount, sal_uLong * pWritten)  in WriteAt()  argument
164 return FillAppend(pBuffer, nCount, pWritten); in WriteAt()
204 sal_uLong nCount, in FillAppend() argument
209 if (nCount > 0 in FillAppend()
210 && nCount > std::numeric_limits< sal_uLong >::max() - m_nPosition) in FillAppend()
212 nCount = std::numeric_limits< sal_uLong >::max() - m_nPosition; in FillAppend()
213 if (nCount == 0) in FillAppend()
220 static_cast< sal_Int8 const * >(pBuffer), nCount)); in FillAppend()
226 m_nPosition += nCount; in FillAppend()
228 *pWritten = nCount; in FillAppend()
314 sal_Size nCount; in readBytes() local
318 nBytesToRead - nSize, &nCount); in readBytes()
321 m_nPosition += nCount; in readBytes()
322 nSize += nCount; in readBytes()
323 if (nError == ERRCODE_NONE && nCount == 0) in readBytes()
344 sal_Size nCount = 0; in readSomeBytes() local
354 &nCount); in readSomeBytes()
357 m_nPosition += nCount; in readSomeBytes()
359 while (nCount == 0 && nError == ERRCODE_IO_PENDING); in readSomeBytes()
361 rData.realloc(sal_Int32(nCount)); in readSomeBytes()
362 return sal_Int32(nCount); in readSomeBytes()
507 sal_Int32 nCount; in GetData() local
510 nCount = m_xStream->readBytes(aBuffer, nRemain); in GetData()
518 aBuffer.getConstArray(), sal_uInt32(nCount)); in GetData()
519 nRead += nCount; in GetData()
520 if (nCount < nRemain) in GetData()
544 sal_Int32 nCount; in GetData() local
547 nCount = m_xStream->readBytes(aBuffer, nRemain); in GetData()
554 m_pPipe->write(aBuffer.getConstArray(), sal_uInt32(nCount)); in GetData()
556 if (nCount < nRemain) in GetData()