Lines Matching refs:mxStorage

70         mxStorage = ::comphelper::OStorageHelper::GetStorageOfFormatFromInputStream(  in ZipStorage()
88 mxStorage = ::comphelper::OStorageHelper::GetStorageOfFormatFromStream( in ZipStorage()
99 mxStorage( rxStorage ) in ZipStorage()
101 OSL_ENSURE( mxStorage.is(), "ZipStorage::ZipStorage - missing storage" ); in ZipStorage()
110 return mxStorage.is(); in implIsStorage()
115 return mxStorage; in implGetXStorage()
121 if( mxStorage.is() ) try in implGetElementNames()
123 aNames = mxStorage->getElementNames(); in implGetElementNames()
136 if( mxStorage.is() ) try in implOpenSubStorage()
139 if( mxStorage->isStorageElement( rElementName ) ) in implOpenSubStorage()
140 xSubXStorage = mxStorage->openStorageElement( in implOpenSubStorage()
153 xSubXStorage = mxStorage->openStorageElement( in implOpenSubStorage()
169 if( mxStorage.is() ) try in implOpenInputStream()
171 …xInStream.set( mxStorage->openStreamElement( rElementName, ::com::sun::star::embed::ElementModes::… in implOpenInputStream()
177 ::com::sun::star::uno::Sequence< ::rtl::OUString > aNames = mxStorage->getElementNames( ); in implOpenInputStream()
184 …xInStream.set( mxStorage->openStreamElement( aNames[i], ::com::sun::star::embed::ElementModes::REA… in implOpenInputStream()
199 if( mxStorage.is() ) try in implOpenOutputStream()
201 …xOutStream.set( mxStorage->openStreamElement( rElementName, ::com::sun::star::embed::ElementModes:… in implOpenOutputStream()
213 Reference< XTransactedObject >( mxStorage, UNO_QUERY_THROW )->commit(); in implCommit()