Lines Matching refs:aName

126 …::InsertInputStreamToStorage_Impl( BaseStorage* pStorage, ::rtl::OUString aName, const uno::Refere…  in InsertInputStreamToStorage_Impl()  argument
129 if ( !pStorage || !aName.getLength() || !xInputStream.is() ) in InsertInputStreamToStorage_Impl()
132 if ( pStorage->IsContained( aName ) ) in InsertInputStreamToStorage_Impl()
135 BaseStorageStream* pNewStream = pStorage->OpenStream( aName ); in InsertInputStreamToStorage_Impl()
162 pStorage->Remove( aName ); in InsertInputStreamToStorage_Impl()
171 void OLESimpleStorage::InsertNameAccessToStorage_Impl( BaseStorage* pStorage, ::rtl::OUString aName in InsertNameAccessToStorage_Impl() argument
174 if ( !pStorage || !aName.getLength() || !xNameAccess.is() ) in InsertNameAccessToStorage_Impl()
177 if ( pStorage->IsContained( aName ) ) in InsertNameAccessToStorage_Impl()
180 BaseStorage* pNewStorage = pStorage->OpenStorage( aName ); in InsertNameAccessToStorage_Impl()
206 pStorage->Remove( aName ); in InsertNameAccessToStorage_Impl()
322 void SAL_CALL OLESimpleStorage::insertByName( const ::rtl::OUString& aName, const uno::Any& aElemen… in insertByName() argument
351 InsertInputStreamToStorage_Impl( m_pStorage, aName, xInputStream ); in insertByName()
353 InsertNameAccessToStorage_Impl( m_pStorage, aName, xNameAccess ); in insertByName()
374 void SAL_CALL OLESimpleStorage::removeByName( const ::rtl::OUString& aName ) in removeByName() argument
390 if ( !m_pStorage->IsContained( aName ) ) in removeByName()
393 m_pStorage->Remove( aName ); in removeByName()
403 void SAL_CALL OLESimpleStorage::replaceByName( const ::rtl::OUString& aName, const uno::Any& aEleme… in replaceByName() argument
414 removeByName( aName ); in replaceByName()
418 insertByName( aName, aElement ); in replaceByName()
431 uno::Any SAL_CALL OLESimpleStorage::getByName( const ::rtl::OUString& aName ) in getByName() argument
444 if ( !m_pStorage->IsContained( aName ) ) in getByName()
458 if ( m_pStorage->IsStorage( aName ) ) in getByName()
460 BaseStorage* pStrg = m_pStorage->OpenStorage( aName ); in getByName()
494 …BaseStorageStream* pStream = m_pStorage->OpenStream( aName, STREAM_READ | STREAM_SHARE_DENYALL | S… in getByName()
572 sal_Bool SAL_CALL OLESimpleStorage::hasByName( const ::rtl::OUString& aName ) in hasByName() argument
583 sal_Bool bResult = m_pStorage->IsContained( aName ); in hasByName()