Home
last modified time | relevance | path

Searched refs:pbuffer (Results 1 – 2 of 2) sorted by relevance

/aoo42x/main/vos/source/
H A Dstream.cxx48 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()
/aoo42x/main/vos/inc/vos/
H A Dstream.hxx91 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 16 milliseconds