Lines Matching refs:sal_Int32

85 	sal_Int32 mnBufferSize;
86 sal_Int32 mnCharsInBuffer;
93 sal_Int32 implReadNext() throw(IOException, RuntimeException);
109 virtual sal_Int32 SAL_CALL readBytes( Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead )
111 …virtual sal_Int32 SAL_CALL readSomeBytes( Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead )
113 virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip )
115 virtual sal_Int32 SAL_CALL available( )
152 sal_Int32 mnNewBufferSize = mnBufferSize * 2; in implResizeBuffer()
209 sal_Int32 nBufferReadPos = 0; in implReadString()
210 sal_Int32 nCopyLen = 0; in implReadString()
215 const sal_Int32 nDelimCount = Delimiters.getLength(); in implReadString()
262 for( sal_Int32 i = 0 ; i < nDelimCount ; i++ ) in implReadString()
292 sal_Int32 OTextInputStream::implReadNext() in implReadNext()
295 sal_Int32 nFreeBufferSize = mnBufferSize - mnCharsInBuffer; in implReadNext()
302 sal_Int32 nBytesToRead = READ_BYTE_COUNT; in implReadNext()
303 sal_Int32 nRead = mxStream->readSomeBytes( mSeqSource, nBytesToRead ); in implReadNext()
304 sal_Int32 nTotalRead = nRead; in implReadNext()
350 sal_Int32 nOldLen = mSeqSource.getLength(); in implReadNext()
397 sal_Int32 OTextInputStream::readBytes( Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead ) in readBytes()
403 sal_Int32 OTextInputStream::readSomeBytes( Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead ) in readSomeBytes()
409 void OTextInputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes()
415 sal_Int32 OTextInputStream::available( ) in available()
480 for( sal_Int32 i = 0; i < aSNL.getLength(); i++ ) in supportsService()