Searched refs:pbuffer (Results 1 – 2 of 2) sorted by relevance
/aoo4110/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()
|
/aoo4110/main/vos/inc/vos/ |
H A D | stream.hxx | 90 virtual sal_Int32 SAL_CALL read(void* pbuffer, sal_uInt32 n) const; 94 void* pbuffer, 112 virtual sal_Int32 SAL_CALL write(const void* pbuffer, sal_uInt32 n); 116 const void* pbuffer, 131 sal_Bool SAL_CALL append(void* pbuffer, sal_uInt32 n); // Write at the end of the Stream.
|
Completed in 27 milliseconds