Home
last modified time | relevance | path

Searched refs:m_pZipFile (Results 1 – 4 of 4) sorted by relevance

/trunk/main/package/source/package/zippackage/
H A Dzipfileaccess.cxx52 , m_pZipFile( NULL ) in OZipFileAccess()
182 if ( m_pZipFile ) in initialize()
227 m_pZipFile = new ZipFile( in initialize()
245 if ( !m_pZipFile ) in getByName()
248 EntryHash::iterator aIter = m_pZipFile->GetEntryHash().find( aName ); in getByName()
249 if ( aIter == m_pZipFile->GetEntryHash().end() ) in getByName()
252 uno::Reference< io::XInputStream > xEntryStream( m_pZipFile->getDataStream( (*aIter).second, in getByName()
272 if ( !m_pZipFile ) in getElementNames()
275 uno::Sequence< ::rtl::OUString > aNames( m_pZipFile->GetEntryHash().size() ); in getElementNames()
278 …for ( EntryHash::iterator aIter = m_pZipFile->GetEntryHash().begin(); aIter != m_pZipFile->GetEntr… in getElementNames()
[all …]
H A DZipPackage.cxx194 , m_pZipFile( NULL ) in ZipPackage()
201 delete m_pZipFile; in ~ZipPackage()
533 auto_ptr < ZipEnumeration > pEnum ( m_pZipFile->entries() ); in getZipFileContents()
777m_pZipFile = new ZipFile ( m_xContentStream, m_xFactory, sal_True, m_bForceRecovery, xProgressHand… in initialize()
790 if( m_pZipFile ) { delete m_pZipFile; m_pZipFile = NULL; } in initialize()
797 if( m_pZipFile ) { delete m_pZipFile; m_pZipFile = NULL; } in initialize()
1141 if ( m_pZipFile ) in ConnectTo()
1142 m_pZipFile->setInputStream( m_xContentStream ); in ConnectTo()
1144 m_pZipFile = new ZipFile ( m_xContentStream, m_xFactory, sal_False ); in ConnectTo()
1162 if ( m_eMode == e_IMode_URL && !m_pZipFile && isLocalFile_Impl( m_aURL ) ) in writeTempFile()
[all …]
/trunk/main/package/inc/
H A DZipPackage.hxx112 ZipFile *m_pZipFile; member in ZipPackage
130 ZipFile& getZipFile() { return *m_pZipFile;} in getZipFile()
H A Dzipfileaccess.hxx54 ZipFile* m_pZipFile; member in OZipFileAccess