Lines Matching refs:m_pZipFile
52 , 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()
307 if ( !m_pZipFile ) in hasByName()
310 EntryHash::iterator aIter = m_pZipFile->GetEntryHash().find( aName ); in hasByName()
312 return ( aIter != m_pZipFile->GetEntryHash().end() ); in hasByName()
324 if ( !m_pZipFile ) in getElementType()
339 if ( !m_pZipFile ) in hasElements()
342 return ( m_pZipFile->GetEntryHash().size() != 0 ); in hasElements()
357 if ( !m_pZipFile ) in getStreamByPattern()
363 …for ( EntryHash::iterator aIter = m_pZipFile->GetEntryHash().begin(); aIter != m_pZipFile->GetEntr… in getStreamByPattern()
367 uno::Reference< io::XInputStream > xEntryStream( m_pZipFile->getDataStream( (*aIter).second, in getStreamByPattern()
399 if ( m_pZipFile ) in dispose()
401 delete m_pZipFile; in dispose()
402 m_pZipFile = NULL; in dispose()