• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/MacOS/GetHTTPS.src/

Lines Matching defs:currentLength

972 OSErr AppendPStrToHandle(const unsigned char *thePString,Handle theHandle,long *currentLength)
980 errCode = AppendCStrToHandle(tempString,theHandle,currentLength);
990 OSErr AppendCStrToHandle(const char *theCString,Handle theHandle,long *currentLength,long *maxLength)
1018 if (currentLength != nil && *currentLength >= 0)
1020 handleCurrentLength = *currentLength;
1059 if (currentLength != nil)
1061 *currentLength += stringLength;
1075 OSErr AppendCharsToHandle(const char *theChars,const int numChars,Handle theHandle,long *currentLength,long *maxLength)
1103 if (currentLength != nil && *currentLength >= 0)
1105 handleCurrentLength = *currentLength;
1143 if (currentLength != nil)
1145 *currentLength += numChars;
1159 OSErr AppendLongIntToHandle(const long inTheLongInt,Handle theHandle,long *currentLength)
1167 errCode = AppendCStrToHandle(tempString,theHandle,currentLength);
1406 int currentLength;
1414 currentLength = CStrLength(theDstCStr);
1430 if (numCharsToInsert + currentLength < maxDstStrLength - 1)
1432 numCharsToShift = currentLength - theInsertionOffset;
1459 int currentLength;
1467 currentLength = CStrLength(theDstCStr);
1483 if (numCharsToInsert + currentLength < maxDstStrLength - 1)
1485 numCharsToShift = currentLength - theInsertionOffset;
1513 int currentLength;
1521 currentLength = CStrLength(*theHandle);
1523 if (currentLength + 1 > ::GetHandleSize(theHandle))
1528 if (inInsertOffset > currentLength)
1535 ::SetHandleSize(theHandle,currentLength + 1 + insertLength);
1537 if (::GetHandleSize(theHandle) < currentLength + 1 + insertLength)
1542 ::BlockMove(*theHandle + inInsertOffset,*theHandle + inInsertOffset + insertLength,currentLength - inInsertOffset + 1);