Lines Matching refs:pBuffer

87 storeError ILockBytes::readAt (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes)  in readAt()  argument
90 sal_uInt8 * dst_lo = static_cast<sal_uInt8*>(pBuffer); in readAt()
109 storeError ILockBytes::writeAt (sal_uInt32 nOffset, void const * pBuffer, sal_uInt32 nBytes) in writeAt() argument
112 sal_uInt8 const * src_lo = static_cast<sal_uInt8 const*>(pBuffer); in writeAt()
306 virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes);
307 virtual storeError writeAt_Impl (sal_uInt32 nOffset, void const * pBuffer, sal_uInt32 nBytes);
413 storeError FileLockBytes::readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) in readAt_Impl() argument
416 oslFileError result = osl_readFileAt (m_hFile, nOffset, pBuffer, nBytes, &nDone); in readAt_Impl()
424 storeError FileLockBytes::writeAt_Impl (sal_uInt32 nOffset, void const * pBuffer, sal_uInt32 nBytes) in writeAt_Impl() argument
427 oslFileError result = osl_writeFileAt (m_hFile, nOffset, pBuffer, nBytes, &nDone); in writeAt_Impl()
545 virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes);
546 virtual storeError writeAt_Impl (sal_uInt32 nOffset, const void * pBuffer, sal_uInt32 nBytes);
637 storeError MappedLockBytes::readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) in readAt_Impl() argument
647 memcpy (pBuffer, src_lo, (src_hi - src_lo)); in readAt_Impl()
697 virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes);
698 virtual storeError writeAt_Impl (sal_uInt32 nOffset, const void * pBuffer, sal_uInt32 nBytes);
782 storeError MemoryLockBytes::readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) in readAt_Impl() argument
792 memcpy (pBuffer, src_lo, (src_hi - src_lo)); in readAt_Impl()
796 storeError MemoryLockBytes::writeAt_Impl (sal_uInt32 nOffset, const void * pBuffer, sal_uInt32 nByt… in writeAt_Impl() argument
816 memcpy (dst_lo, pBuffer, (dst_hi - dst_lo)); in writeAt_Impl()