Lines Matching refs:maRecBuffer

169     maRecBuffer( rInStream ),  in BiffInputStream()
192 maRecBuffer.enableDecoder( false ); in startNextRecord()
194 bValidRec = maRecBuffer.startNextRecord(); in startNextRecord()
196 bIsZeroRec = (maRecBuffer.getRecId() == 0) && (maRecBuffer.getRecSize() == 0); in startNextRecord()
198 while( bValidRec && ((mbCont && isContinueId( maRecBuffer.getRecId() )) || bIsZeroRec) ); in startNextRecord()
218 maRecBuffer.enableDecoder( true ); in resetRecord()
231 maRecBuffer.setDecoder( rxDecoder ); in setDecoder()
236 maRecBuffer.enableDecoder( bEnable ); in enableDecoder()
248 if( maRecBuffer.startNextRecord() ) // read header of next record in getNextRecId()
249 nRecId = maRecBuffer.getRecId(); in getNextRecId()
266 return mbEof ? -1 : (mnCurrRecSize - maRecBuffer.getRecLeft()); in tell()
286 return maRecBuffer.getBaseStream().tell(); in tellBase()
291 return maRecBuffer.getBaseStream().size(); in sizeBase()
322 maRecBuffer.read( pnBuffer, nReadSize ); in readMemory()
344 maRecBuffer.skip( nSkipSize ); in skip()
451 mnRecHandle = maRecBuffer.getRecHeaderPos(); in setupRecord()
452 mnRecId = maRecBuffer.getRecId(); in setupRecord()
454 mnCurrRecSize = mnComplRecSize = maRecBuffer.getRecSize(); in setupRecord()
465 maRecBuffer.startRecord( getRecHandle() ); in restartRecord()
466 mnCurrRecSize = maRecBuffer.getRecSize(); in restartRecord()
480 maRecBuffer.restartAt( nRecHandle ); in rewindToRecord()
493 …mbEof = mbEof || !mbCont || !isContinueId( maRecBuffer.getNextRecId() ) || !maRecBuffer.startNextR… in jumpToNextContinue()
495 mnCurrRecSize += maRecBuffer.getRecSize(); in jumpToNextContinue()
501 …OSL_ENSURE( maRecBuffer.getRecLeft() == 0, "BiffInputStream::jumpToNextStringContinue - alignment … in jumpToNextStringContinue()
512 … mbEof = mbEof || (maRecBuffer.getNextRecId() != BIFF_ID_CONT) || !maRecBuffer.startNextRecord(); in jumpToNextStringContinue()
535 …sal_uInt16 nMaxSize = getLimitedValue< sal_uInt16, sal_Int32 >( nBytes, 0, maRecBuffer.getRecLeft(… in getMaxRawReadSize()