Searched refs:pbuffer (Results 1 – 2 of 2) sorted by relevance
/trunk/main/vos/source/ |
H A D | stream.cxx | 48 sal_Int32 OStream::read(void* pbuffer, sal_uInt32 n) const in read() argument 50 return (m_rStream.read(pbuffer, n)); in read() 54 void* pbuffer, sal_uInt32 n) const in read() argument 56 return (seekTo(offset) ? read(pbuffer, n) : -1); in read() 59 sal_Int32 OStream::write(const void* pbuffer, sal_uInt32 n) in write() argument 63 && (m_rStream.write(pbuffer, n) == static_cast< sal_Int32 >(n)); in write() 67 const void* pbuffer, sal_uInt32 n) in write() argument 69 return (seekTo(offset) && write(pbuffer, n)); in write() 72 sal_Bool OStream::append(void* pbuffer, sal_uInt32 n) in append() argument 74 return (seekToEnd() && write(pbuffer, n)); in append()
|
/trunk/main/vos/inc/vos/ |
H A D | stream.hxx | 91 virtual sal_Int32 SAL_CALL read(void* pbuffer, sal_uInt32 n) const; 95 void* pbuffer, 113 virtual sal_Int32 SAL_CALL write(const void* pbuffer, sal_uInt32 n); 117 const void* pbuffer, 132 sal_Bool SAL_CALL append(void* pbuffer, sal_uInt32 n); // Write at the end of the Stream.
|
Completed in 20 milliseconds