Lines Matching refs:xStorage
126 public boolean WriteBytesToSubstream( XStorage xStorage, in WriteBytesToSubstream() argument
136 Object oSubStream = xStorage.openStreamElement( sStreamName, ElementModes.ELEMENT_WRITE ); in WriteBytesToSubstream()
153 public boolean WriteBytesToEncrSubstream( XStorage xStorage, in WriteBytesToEncrSubstream() argument
164 …Object oSubStream = xStorage.openEncryptedStreamElement( sStreamName, ElementModes.ELEMENT_WRITE, … in WriteBytesToEncrSubstream()
181 public boolean WBToSubstrOfEncr( XStorage xStorage, in WBToSubstrOfEncr() argument
192 Object oSubStream = xStorage.openStreamElement( sStreamName, ElementModes.ELEMENT_WRITE ); in WBToSubstrOfEncr()
228 public int ChangeStreamPass( XStorage xStorage, in ChangeStreamPass() argument
237 …Object oSubStream = xStorage.openEncryptedStreamElement( sStreamName, ElementModes.ELEMENT_WRITE, … in ChangeStreamPass()
283 …public boolean setStorageTypeAndCheckProps( XStorage xStorage, String sMediaType, boolean bIsRoot,… in setStorageTypeAndCheckProps() argument
288 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in setStorageTypeAndCheckProps()
327 …public boolean checkStorageProperties( XStorage xStorage, String sMediaType, boolean bIsRoot, int … in checkStorageProperties() argument
332 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in checkStorageProperties()
573 public boolean commitStorage( XStorage xStorage ) in commitStorage() argument
576 …ect xTransact = (XTransactedObject) UnoRuntime.queryInterface( XTransactedObject.class, xStorage ); in commitStorage()
596 public boolean disposeStorage( XStorage xStorage ) in disposeStorage() argument
599 XComponent xComponent = (XComponent) UnoRuntime.queryInterface( XComponent.class, xStorage ); in disposeStorage()
667 public XStorage openSubStorage( XStorage xStorage, String sName, int nMode ) in openSubStorage() argument
672 Object oSubStorage = xStorage.openStorageElement( sName, nMode ); in openSubStorage()
790 public boolean renameElement( XStorage xStorage, String sOldName, String sNewName ) in renameElement() argument
795 xStorage.renameElement( sOldName, sNewName ); in renameElement()
806 public boolean removeElement( XStorage xStorage, String sName ) in removeElement() argument
811 xStorage.removeElement( sName ); in removeElement()
822 public XStream OpenStream( XStorage xStorage, in OpenStream() argument
830 Object oSubStream = xStorage.openStreamElement( sStreamName, nMode ); in OpenStream()
843 public boolean cantOpenStorage( XStorage xStorage, String sName ) in cantOpenStorage() argument
848 Object oDummyStorage = xStorage.openStorageElement( sName, ElementModes.ELEMENT_READ ); in cantOpenStorage()
859 public boolean cantOpenStream( XStorage xStorage, String sName, int nMode ) in cantOpenStream() argument
864 Object oDummyStream = xStorage.openStreamElement( sName, nMode ); in cantOpenStream()