Lines Matching refs:xStorage

144 	public boolean WriteBytesToSubstream( XStorage xStorage,  in WriteBytesToSubstream()  argument
155 Object oSubStream = xStorage.openStreamElement( sStreamName, ElementModes.WRITE ); in WriteBytesToSubstream()
172 public boolean setStorageTypeAndCheckProps( XStorage xStorage, in setStorageTypeAndCheckProps() argument
180 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in setStorageTypeAndCheckProps()
215 …RelAccess = (XRelationshipAccess) UnoRuntime.queryInterface( XRelationshipAccess.class, xStorage ); in setStorageTypeAndCheckProps()
338 public boolean checkStorageProperties( XStorage xStorage, in checkStorageProperties() argument
346 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xStorage ); in checkStorageProperties()
381 …RelAccess = (XRelationshipAccess) UnoRuntime.queryInterface( XRelationshipAccess.class, xStorage ); in checkStorageProperties()
578 public boolean commitStorage( XStorage xStorage ) in commitStorage() argument
581 …ect xTransact = (XTransactedObject) UnoRuntime.queryInterface( XTransactedObject.class, xStorage ); in commitStorage()
623 public boolean disposeStorage( XStorage xStorage ) in disposeStorage() argument
626 XComponent xComponent = (XComponent) UnoRuntime.queryInterface( XComponent.class, xStorage ); in disposeStorage()
694 public XStorage openSubStorage( XStorage xStorage, String sName, int nMode ) in openSubStorage() argument
699 Object oSubStorage = xStorage.openStorageElement( sName, nMode ); in openSubStorage()
833 public boolean renameElement( XStorage xStorage, String sOldName, String sNewName ) in renameElement() argument
838 xStorage.renameElement( sOldName, sNewName ); in renameElement()
849 public boolean removeElement( XStorage xStorage, String sName ) in removeElement() argument
854 xStorage.removeElement( sName ); in removeElement()
865 public XStream OpenStream( XStorage xStorage, in OpenStream() argument
873 Object oSubStream = xStorage.openStreamElement( sStreamName, nMode ); in OpenStream()
886 public boolean cantOpenStorage( XStorage xStorage, String sName ) in cantOpenStorage() argument
891 Object oDummyStorage = xStorage.openStorageElement( sName, ElementModes.READ ); in cantOpenStorage()
902 public boolean cantOpenStream( XStorage xStorage, String sName, int nMode ) in cantOpenStream() argument
907 Object oDummyStream = xStorage.openStreamElement( sName, nMode ); in cantOpenStream()
1042 …torage cloneStorage( XMultiServiceFactory xMSF, XSingleServiceFactory xFactory, XStorage xStorage ) in cloneStorage() argument
1050 xStorage.copyLastCommitTo( xResult ); in cloneStorage()
1061 …orage( XMultiServiceFactory xMSF, XSingleServiceFactory xFactory, XStorage xStorage, String sName ) in cloneSubStorage() argument
1069 xStorage.copyStorageElementLastCommitTo( sName, xResult ); in cloneSubStorage()
1080 public XStream cloneSubStream( XStorage xStorage, String sName ) in cloneSubStream() argument
1085 XStream xStream = xStorage.cloneStreamElement( sName ); in cloneSubStream()