Lines Matching refs:inputStream
376 …st Reference< XComponentContext >& context, Reference< XInputStream >& inputStream ) throw ( Excep…
580 static sal_uInt16 readUInt16LE( Reference< XInputStream >& inputStream ) throw ( Exception ) in readUInt16LE() argument
583 sal_Int32 bytesRead = inputStream->readBytes( bytes, 2 ); in readUInt16LE()
589 static sal_uInt32 readUInt32LE( Reference< XInputStream >& inputStream ) throw ( Exception ) in readUInt32LE() argument
592 sal_Int32 bytesRead = inputStream->readBytes( bytes, 4 ); in readUInt32LE()
598 …st Reference< XComponentContext >& context, Reference< XInputStream >& inputStream ) throw ( Excep… in AgileEncryptionInfo() argument
600 sal_uInt32 nReserved = readUInt32LE( inputStream ); in AgileEncryptionInfo()
609 fastParser.parseStream( inputStream, OUString::createFromAscii( "EncryptionInfo" ), false ); in AgileEncryptionInfo()
955 …yptionInfo( const Reference< XComponentContext >& context, Reference< XInputStream >& inputStream ) in readEncryptionInfo() argument
958 sal_uInt16 nVersionMajor = readUInt16LE( inputStream ); in readEncryptionInfo()
959 sal_uInt16 nVersionMinor = readUInt16LE( inputStream ); in readEncryptionInfo()
965 BinaryXInputStream aInfoStrm( inputStream, false ); in readEncryptionInfo()
971 return new AgileEncryptionInfo( context, inputStream ); in readEncryptionInfo()