Searched refs:io_nCurPos (Results 1 – 1 of 1) sorted by relevance
142 …ing > LockFileCommon::ParseEntry( const uno::Sequence< sal_Int8 >& aBuffer, sal_Int32& io_nCurPos ) in ParseEntry() argument148 aResult[nInd] = ParseName( aBuffer, io_nCurPos ); in ParseEntry()149 if ( io_nCurPos >= aBuffer.getLength() in ParseEntry()150 || ( nInd < LOCKFILE_ENTRYSIZE - 1 && aBuffer[io_nCurPos++] != ',' ) in ParseEntry()151 || ( nInd == LOCKFILE_ENTRYSIZE - 1 && aBuffer[io_nCurPos++] != ';' ) ) in ParseEntry()159 …String LockFileCommon::ParseName( const uno::Sequence< sal_Int8 >& aBuffer, sal_Int32& io_nCurPos ) in ParseName() argument167 if ( io_nCurPos >= aBuffer.getLength() ) in ParseName()172 … if ( aBuffer[io_nCurPos] == ',' || aBuffer[io_nCurPos] == ';' || aBuffer[io_nCurPos] == '\\' ) in ParseName()173 aResult.append( (sal_Char)aBuffer[io_nCurPos] ); in ParseName()178 io_nCurPos++; in ParseName()[all …]