Lines Matching refs:xStorage

120 	public boolean WriteBytesToSubstreamDefaultCompressed( XStorage xStorage,  in WriteBytesToSubstreamDefaultCompressed()  argument
129 Object oSubStream = xStorage.openStreamElement( sStreamName, ElementModes.WRITE ); in WriteBytesToSubstreamDefaultCompressed()
214 public boolean WriteBytesToSubstream( XStorage xStorage, in WriteBytesToSubstream() argument
224 Object oSubStream = xStorage.openStreamElement( sStreamName, ElementModes.WRITE ); in WriteBytesToSubstream()
248 public boolean WriteBytesToEncrSubstream( XStorage xStorage, in WriteBytesToEncrSubstream() argument
259 … Object oSubStream = xStorage.openEncryptedStreamElement( sStreamName, ElementModes.WRITE, sPass ); in WriteBytesToEncrSubstream()
283 public boolean WBToSubstrOfEncr( XStorage xStorage, in WBToSubstrOfEncr() argument
294 Object oSubStream = xStorage.openStreamElement( sStreamName, ElementModes.WRITE ); in WBToSubstrOfEncr()
337 public boolean WriteBytesToStreamH( XStorage xStorage, in WriteBytesToStreamH() argument
349 …HierarchicalStorageAccess) UnoRuntime.queryInterface( XHierarchicalStorageAccess.class, xStorage ); in WriteBytesToStreamH()
399 public boolean WriteBytesToEncrStreamH( XStorage xStorage, in WriteBytesToEncrStreamH() argument
412 …HierarchicalStorageAccess) UnoRuntime.queryInterface( XHierarchicalStorageAccess.class, xStorage ); in WriteBytesToEncrStreamH()
464 public boolean WBToSubstrOfEncrH( XStorage xStorage, in WBToSubstrOfEncrH() argument
477 …HierarchicalStorageAccess) UnoRuntime.queryInterface( XHierarchicalStorageAccess.class, xStorage ); in WBToSubstrOfEncrH()
546 public int ChangeStreamPass( XStorage xStorage, in ChangeStreamPass() argument
555 …Object oSubStream = xStorage.openEncryptedStreamElement( sStreamName, ElementModes.WRITE, sOldPass… in ChangeStreamPass()
596 public int ChangeStreamPassH( XStorage xStorage, in ChangeStreamPassH() argument
604 …HierarchicalStorageAccess) UnoRuntime.queryInterface( XHierarchicalStorageAccess.class, xStorage ); in ChangeStreamPassH()
673 …public boolean setStorageTypeAndCheckProps( XStorage xStorage, String sMediaType, boolean bIsRoot,… in setStorageTypeAndCheckProps() argument
678 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in setStorageTypeAndCheckProps()
718 …public boolean checkStorageProperties( XStorage xStorage, String sMediaType, boolean bIsRoot, int … in checkStorageProperties() argument
723 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in checkStorageProperties()
1102 public boolean commitStorage( XStorage xStorage ) in commitStorage() argument
1105 …ect xTransact = (XTransactedObject) UnoRuntime.queryInterface( XTransactedObject.class, xStorage ); in commitStorage()
1147 public boolean disposeStorage( XStorage xStorage ) in disposeStorage() argument
1150 XComponent xComponent = (XComponent) UnoRuntime.queryInterface( XComponent.class, xStorage ); in disposeStorage()
1218 public XStorage openSubStorage( XStorage xStorage, String sName, int nMode ) in openSubStorage() argument
1223 Object oSubStorage = xStorage.openStorageElement( sName, nMode ); in openSubStorage()
1357 public boolean renameElement( XStorage xStorage, String sOldName, String sNewName ) in renameElement() argument
1362 xStorage.renameElement( sOldName, sNewName ); in renameElement()
1373 public boolean removeElement( XStorage xStorage, String sName ) in removeElement() argument
1378 xStorage.removeElement( sName ); in removeElement()
1389 public XStream OpenStream( XStorage xStorage, in OpenStream() argument
1397 Object oSubStream = xStorage.openStreamElement( sStreamName, nMode ); in OpenStream()
1410 public boolean compareRawMethodsOnEncrStream( XStorage xStorage, String sStreamName ) in compareRawMethodsOnEncrStream() argument
1416 xRawStorage = (XStorageRawAccess) UnoRuntime.queryInterface( XStorageRawAccess.class, xStorage ); in compareRawMethodsOnEncrStream()
1513 public boolean cantOpenStorage( XStorage xStorage, String sName ) in cantOpenStorage() argument
1518 Object oDummyStorage = xStorage.openStorageElement( sName, ElementModes.READ ); in cantOpenStorage()
1529 public boolean cantOpenStream( XStorage xStorage, String sName, int nMode ) in cantOpenStream() argument
1534 Object oDummyStream = xStorage.openStreamElement( sName, nMode ); in cantOpenStream()
1545 public boolean cantOpenStreamH( XStorage xStorage, String sPath, int nMode ) in cantOpenStreamH() argument
1550 …HierarchicalStorageAccess) UnoRuntime.queryInterface( XHierarchicalStorageAccess.class, xStorage ); in cantOpenStreamH()
1570 public boolean cantOpenEncrStreamH( XStorage xStorage, String sPath, int nMode, String aPass ) in cantOpenEncrStreamH() argument
1575 …HierarchicalStorageAccess) UnoRuntime.queryInterface( XHierarchicalStorageAccess.class, xStorage ); in cantOpenEncrStreamH()
1600 public XStorage cloneStorage( XSingleServiceFactory xFactory, XStorage xStorage ) in cloneStorage() argument
1609 xStorage.copyLastCommitTo( xResult ); in cloneStorage()
1620 public XStorage cloneSubStorage( XSingleServiceFactory xFactory, XStorage xStorage, String sName ) in cloneSubStorage() argument
1629 xStorage.copyStorageElementLastCommitTo( sName, xResult ); in cloneSubStorage()
1640 public XStream cloneSubStream( XStorage xStorage, String sName ) in cloneSubStream() argument
1645 XStream xStream = xStorage.cloneStreamElement( sName ); in cloneSubStream()
1656 public XStream cloneEncrSubStream( XStorage xStorage, String sName, String sPass ) in cloneEncrSubStream() argument
1661 XStream xStream = xStorage.cloneEncryptedStreamElement( sName, sPass ); in cloneEncrSubStream()