Lines Matching refs:sPath

597 								 String sPath,  in ChangeStreamPassH()  argument
614 …Object oSubStream = xHStorage.openEncryptedStreamElementByHierarchicalName( sPath, ElementModes.WR… in ChangeStreamPassH()
618 Error( "Can't open encrypted substream '" + sPath + "'!" ); in ChangeStreamPassH()
624 Error( "Can't open encrypted substream '" + sPath + "', exception : " + e + "!" ); in ChangeStreamPassH()
643 Error( "Can't change encryption key of the substream '" + sPath + "', exception:" + e ); in ChangeStreamPassH()
651 Error( "Substream '" + sPath + "', stream opened for writing must be transacted!" ); in ChangeStreamPassH()
661 Error( "Can't commit storage after substream '" + sPath + "' change, exception : " + e + "!" ); in ChangeStreamPassH()
667 if ( !disposeStream( xSubStream, sPath ) ) in ChangeStreamPassH()
969 String sPath, in checkStreamH() argument
986 Object oSubStream = xHStorage.openStreamElementByHierarchicalName( sPath, ElementModes.READ ); in checkStreamH()
990 Error( "Can't open substream '" + sPath + "'!" ); in checkStreamH()
996 Error( "Can't open substream '" + sPath + "', exception : " + e + "!" ); in checkStreamH()
1000 boolean bResult = InternalCheckStream( xSubStream, sPath, sMediaType, bCompressed, pBytes, true ); in checkStreamH()
1003 if ( !disposeStream( xSubStream, sPath ) ) in checkStreamH()
1010 String sPath, in checkEncrStreamH() argument
1027 Object oSubStream = xHStorage.openStreamElementByHierarchicalName( sPath, ElementModes.READ ); in checkEncrStreamH()
1029 Error( "Encrypted substream '" + sPath + "' was opened without password!" ); in checkEncrStreamH()
1036 …Error( "Unexpected exception in case of opening of encrypted stream '" + sPath + "' without passwo… in checkEncrStreamH()
1044 …Object oSubStream = xHStorage.openEncryptedStreamElementByHierarchicalName( sPath, ElementModes.RE… in checkEncrStreamH()
1046 Error( "Encrypted substream '" + sPath + "' was opened with wrong password!" ); in checkEncrStreamH()
1053 …Error( "Unexpected exception in case of opening of encrypted stream '" + sPath + "' with wrong pas… in checkEncrStreamH()
1060 …Object oSubStream = xHStorage.openEncryptedStreamElementByHierarchicalName( sPath, ElementModes.RE… in checkEncrStreamH()
1064 Error( "Can't open encrypted substream '" + sPath + "'!" ); in checkEncrStreamH()
1070 Error( "Can't open encrypted substream '" + sPath + "', exception : " + e + "!" ); in checkEncrStreamH()
1077 boolean bResult = InternalCheckStream( xSubStream, sPath, sMediaType, true, pBytes, false ); in checkEncrStreamH()
1080 if ( !disposeStream( xSubStream, sPath ) ) in checkEncrStreamH()
1545 public boolean cantOpenStreamH( XStorage xStorage, String sPath, int nMode ) in cantOpenStreamH() argument
1559 Object oDummyStream = xHStorage.openStreamElementByHierarchicalName( sPath, nMode ); in cantOpenStreamH()
1560 Error( "The trying to open substream '" + sPath + "' must fail!" ); in cantOpenStreamH()
1570 public boolean cantOpenEncrStreamH( XStorage xStorage, String sPath, int nMode, String aPass ) in cantOpenEncrStreamH() argument
1584 …Object oDummyStream = xHStorage.openEncryptedStreamElementByHierarchicalName( sPath, nMode, aPass … in cantOpenEncrStreamH()
1585 Error( "The trying to open substream '" + sPath + "' must fail!" ); in cantOpenEncrStreamH()
1589 Error( "The substream '" + sPath + "' must not exist!" ); in cantOpenEncrStreamH()