| /AOO41X/main/tools/source/ref/ |
| H A D | pstm.cxx | 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() [all …]
|
| /AOO41X/main/svtools/source/filter/wmf/ |
| H A D | winwmf.cxx | 1212 sal_Bool WMFReader::GetPlaceableBound( Rectangle& rPlaceableBound, SvStream* pStm ) in GetPlaceableBound() argument 1225 sal_uInt32 nPos = pStm->Tell(); in GetPlaceableBound() 1226 sal_uInt32 nEnd = pStm->Seek( STREAM_SEEK_TO_END ); in GetPlaceableBound() 1228 pStm->Seek( nPos ); in GetPlaceableBound() 1234 *pStm >> nRSize >> nFunction; in GetPlaceableBound() 1236 … if( pStm->GetError() || ( nRSize < 3 ) || ( nRSize==3 && nFunction==0 ) || pStm->IsEof() ) in GetPlaceableBound() 1238 if( pStm->IsEof() ) in GetPlaceableBound() 1240 pStm->SetError( SVSTREAM_FILEFORMAT_ERROR ); in GetPlaceableBound() 1259 *pStm >> nHeight >> nWidth; in GetPlaceableBound() 1265 *pStm >> nMapMode; in GetPlaceableBound() [all …]
|
| /AOO41X/main/sot/source/sdstor/ |
| H A D | storage.cxx | 122 SotStorageStream::SotStorageStream( BaseStorageStream * pStm ) in SotStorageStream() argument 124 if( pStm ) in SotStorageStream() 126 if( STREAM_WRITE & pStm->GetMode() ) in SotStorageStream() 131 pOwnStm = pStm; in SotStorageStream() 132 SetError( pStm->GetError() ); in SotStorageStream() 133 pStm->ResetError(); in SotStorageStream() 694 SotStorage::SotStorage( SvStream * pStm, sal_Bool bDelete ) in SotStorage() argument 697 SetError( pStm->GetError() ); in SotStorage() 700 if ( UCBStorage::IsStorageFile( pStm ) ) in SotStorage() 701 m_pOwnStg = new UCBStorage( *pStm, sal_False ); in SotStorage() [all …]
|
| H A D | stg.cxx | 702 StorageStream* pStm = new StorageStream( pIo, p, m ); in OpenStream() local 704 pStm->SetAutoCommit( sal_True ); in OpenStream() 705 pIo->MoveError( *pStm ); in OpenStream() 706 return pStm; in OpenStream()
|
| H A D | ucbstorage.cxx | 3328 SvStream * pStm = ::utl::UcbStreamHelper::CreateStream( aFileURL, STREAM_STD_READ ); local 3329 sal_Bool bRet = UCBStorage::IsStorageFile( pStm ); 3330 delete pStm;
|
| /AOO41X/main/dtrans/source/win32/workbench/ |
| H A D | testmarshal.cxx | 98 IStream* pStm = NULL; in ThreadProc() local 99 hr = CreateStreamOnHGlobal( g_hGlob, FALSE, &pStm ); in ThreadProc() 103 pStm, in ThreadProc() 107 hr = pStm->Release( ); in ThreadProc() 165 IStream* pStm = NULL; in main() local 167 hr = CreateStreamOnHGlobal( 0, FALSE, &pStm ); in main() 171 pStm, in main() 178 hr = GetHGlobalFromStream( pStm, &g_hGlob ); in main() 180 hr = pStm->Release( ); in main()
|
| /AOO41X/main/dtrans/source/win32/dtobj/ |
| H A D | APNDataObject.cxx | 60 IStreamPtr pStm; in CAPNDataObject() local 61 HRESULT hr = CreateStreamOnHGlobal( 0, KEEP_HGLOB_ON_RELEASE, &pStm ); in CAPNDataObject() 68 pStm.get(), in CAPNDataObject() 82 hr = GetHGlobalFromStream(pStm.get(), &m_hGlobal ); in CAPNDataObject() 107 IStreamPtr pStm; in ~CAPNDataObject() local 108 HRESULT hr = CreateStreamOnHGlobal(m_hGlobal, FREE_HGLOB_ON_RELEASE, &pStm); in ~CAPNDataObject() 114 hr = CoReleaseMarshalData(pStm.get()); in ~CAPNDataObject() 362 IStreamPtr pStm; in MarshalIDataObjectIntoCurrentApartment() local 363 hr = CreateStreamOnHGlobal(m_hGlobal, KEEP_HGLOB_ON_RELEASE, &pStm); in MarshalIDataObjectIntoCurrentApartment() 369 … hr = CoUnmarshalInterface(pStm.get(), __uuidof(IDataObject), (void**)ppIDataObj); in MarshalIDataObjectIntoCurrentApartment()
|
| /AOO41X/main/tools/source/rc/ |
| H A D | resmgr.cxx | 96 SvStream * pStm; member in InternalResMgr 529 pStm->Seek( pFind->nOffset ); in GetBitmapStream() 530 return pStm; in GetBitmapStream() 543 , pStm( NULL ) in InternalResMgr() 561 delete pStm; in ~InternalResMgr() 600 pStm = new SvFileStream( aFileName, (STREAM_READ | STREAM_SHARE_DENYWRITE | STREAM_NOCREATE) ); in Create() 601 if( pStm->GetError() == 0 ) in Create() 605 pStm->Seek( STREAM_SEEK_TO_END ); in Create() 611 pStm->SeekRel( - (int)sizeof( lContLen ) ); in Create() 612 pStm->Read( &lContLen, sizeof( lContLen ) ); in Create() [all …]
|
| /AOO41X/main/svx/source/xml/ |
| H A D | xmlgrhlp.cxx | 121 …SvStream* pStm = ::utl::UcbStreamHelper::CreateStream( maTmp.GetURL(), STREAM_WRITE | STREAM_TRUNC… in SvXMLGraphicInputStream() local 123 if( pStm ) in SvXMLGraphicInputStream() 131 pStm->Write( aGfxLink.GetData(), aGfxLink.GetDataSize() ); in SvXMLGraphicInputStream() 132 bRet = ( pStm->GetError() == 0 ); in SvXMLGraphicInputStream() 146 …bRet = ( pFilter->ExportGraphic( aGraphic, String(), *pStm, pFilter->GetExportFormatNumberForShort… in SvXMLGraphicInputStream() 150 pStm->SetVersion( SOFFICE_FILEFORMAT_8 ); in SvXMLGraphicInputStream() 151 pStm->SetCompressMode( COMPRESSMODE_ZBITMAP ); in SvXMLGraphicInputStream() 152 ( (GDIMetaFile&) aGraphic.GetGDIMetaFile() ).Write( *pStm ); in SvXMLGraphicInputStream() 153 bRet = ( pStm->GetError() == 0 ); in SvXMLGraphicInputStream() 159 pStm->Seek( 0 ); in SvXMLGraphicInputStream() [all …]
|
| /AOO41X/main/sd/source/ui/unoidl/ |
| H A D | sddetect.cxx | 333 SvStream* pStm = aMedium.GetInStream(); in detect() local 334 if ( !pStm ) in detect() 340 SotStorageRef aStorage = new SotStorage ( pStm, sal_False ); in detect() 358 pStm->Seek( STREAM_SEEK_TO_BEGIN ); in detect() 361 GraphicDescriptor aDesc( *pStm, &aFileName ); in detect() 372 pStm->Seek( STREAM_SEEK_TO_BEGIN ); in detect() 373 *pStm >> n8; in detect()
|
| /AOO41X/main/basegfx/source/tools/ |
| H A D | debugplotter.cxx | 39 ::std::ostream* pStm ) in outputHeader() argument 42 if( pStm ) in outputHeader() 44 *pStm << "#!/usr/bin/gnuplot -persist" << ::std::endl << in outputHeader() 116 Writer( ::std::ostream* pStm ) : in Writer() argument 117 mpStream( pStm ) in Writer()
|
| /AOO41X/main/sd/source/ui/app/ |
| H A D | sdmod.cxx | 236 …SvStream* pStm = ::utl::UcbStreamHelper::CreateStream( aURL.GetMainURL( INetURLObject::NO_DECODE )… in GetOptionStream() local 238 if( pStm ) in GetOptionStream() 239 xOptionStorage = new SvStorage( pStm, sal_True ); in GetOptionStream()
|
| /AOO41X/main/shell/source/win32/shlxthandler/ooofilt/ |
| H A D | ooofilt.hxx | 141 IStream *pStm); 144 IStream *pStm,
|
| H A D | ooofilt.cxx | 734 SCODE STDMETHODCALLTYPE COooFilter::Load(IStream *pStm) in Load() argument 738 m_pStream = PrepareIStream( pStm, z_filefunc ); in Load()
|
| /AOO41X/main/tools/inc/tools/ |
| H A D | pstm.hxx | 197 SvStream * pStm; member in SvPersistStream 228 SvStream * GetStream() const { return pStm; } in GetStream()
|
| /AOO41X/main/sw/source/core/swg/ |
| H A D | SwXMLTextBlocks.cxx | 577 SvStream * pStm = ::utl::UcbStreamHelper::CreateStream( aName, STREAM_STD_READ ); in IsFileUCBStorage() local 578 sal_Bool bRet = UCBStorage::IsStorageFile( pStm ); in IsFileUCBStorage() 579 delete pStm; in IsFileUCBStorage()
|
| /AOO41X/main/sot/inc/sot/ |
| H A D | storage.hxx | 79 SotStorageStream( BaseStorageStream *pStm ); 147 SotStorage( SvStream * pStm, sal_Bool bDelete );
|
| /AOO41X/main/forms/source/component/ |
| H A D | imgprod.cxx | 54 ImgProdLockBytes( SvStream* pStm, sal_Bool bOwner ); 67 ImgProdLockBytes::ImgProdLockBytes( SvStream* pStm, sal_Bool bOwner ) : in ImgProdLockBytes() argument 68 SvLockBytes( pStm, bOwner ) in ImgProdLockBytes()
|
| /AOO41X/main/odk/examples/OLE/activex/ |
| H A D | SOActiveX.h | 139 STDMETHOD(Load) ( LPSTREAM pStm );
|
| H A D | SOActiveX.cpp | 177 STDMETHODIMP CSOActiveX::Load ( LPSTREAM pStm ) in Load() argument
|
| /AOO41X/main/extensions/source/activex/main/ |
| H A D | SOActiveX.h | 173 STDMETHOD(Load) ( LPSTREAM pStm );
|
| /AOO41X/main/idl/inc/ |
| H A D | database.hxx | 70 SvFileStream * pStm; member in SvIdlDataBase
|
| /AOO41X/main/svtools/source/filter/ |
| H A D | filter.cxx | 1172 sal_uLong GraphicFilter::ImplSetError( sal_uLong nError, const SvStream* pStm ) in ImplSetError() argument 1175 pErrorEx->nStreamError = pStm ? pStm->GetError() : ERRCODE_NONE; in ImplSetError()
|
| /AOO41X/main/svtools/inc/svtools/ |
| H A D | filter.hxx | 260 sal_uLong ImplSetError( sal_uLong nError, const SvStream* pStm = NULL );
|