Lines Matching refs:pStm
172 , pStm( pStream ) in SvPersistStream()
187 if( pStm ) in SvPersistStream()
189 SetVersion( pStm->GetVersion() ); in SvPersistStream()
190 SetError( pStm->GetError() ); in SvPersistStream()
191 SyncSvStream( pStm->Tell() ); in SvPersistStream()
207 , pStm( pStream ) in SvPersistStream()
225 if( pStm ) in SvPersistStream()
227 SetVersion( pStm->GetVersion() ); in SvPersistStream()
228 SetError( pStm->GetError() ); in SvPersistStream()
229 SyncSvStream( pStm->Tell() ); in SvPersistStream()
260 if( pStm != pStream ) in SetStream()
262 if( pStm ) in SetStream()
265 pStm->SetError( GetError() ); in SetStream()
267 pStm = pStream; in SetStream()
269 if( pStm ) in SetStream()
271 SetVersion( pStm->GetVersion() ); in SetStream()
272 SetError( pStm->GetError() ); in SetStream()
273 SyncSvStream( pStm->Tell() ); in SetStream()
303 DBG_ASSERT( pStm, "stream not set" ); in ResetError()
304 pStm->ResetError(); in ResetError()
312 DBG_ASSERT( pStm, "stream not set" ); in GetData()
313 sal_uIntPtr nRet = pStm->Read( pData, nSize ); in GetData()
314 SetError( pStm->GetError() ); in GetData()
323 DBG_ASSERT( pStm, "stream not set" ); in PutData()
324 sal_uIntPtr nRet = pStm->Write( pData, nSize ); in PutData()
325 SetError( pStm->GetError() ); in PutData()
334 DBG_ASSERT( pStm, "stream not set" ); in SeekPos()
335 sal_uIntPtr nRet = pStm->Seek( nPos ); in SeekPos()
336 SetError( pStm->GetError() ); in SeekPos()