• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/MacOS/GetHTTPS.src/

Lines Matching defs:maxCStrLength

69 void CopyPStrToCStr(const unsigned char *thePStr,char *theCStr,const int maxCStrLength)
74 if (thePStr != nil && theCStr != nil && maxCStrLength > 0)
80 if (i >= numPChars || i >= maxCStrLength - 1)
248 void ConcatPStrToCStr(const unsigned char *thePStr,char *theCStr,const int maxCStrLength)
253 if (thePStr != nil && theCStr != nil && maxCStrLength > 0)
266 if (i >= numPChars || cStrLength >= maxCStrLength - 1)
355 void ConcatCStrToCStr(const char *theSrcCStr,char *theDstCStr,const int maxCStrLength)
360 if (theSrcCStr != nil && theDstCStr != nil && maxCStrLength > 0)
370 if (*theSrcCStr == 0 || cStrLength >= maxCStrLength - 1)
387 void ConcatCharToCStr(const char theChar,char *theDstCStr,const int maxCStrLength)
392 if (theDstCStr != nil && maxCStrLength > 0)
396 if (cStrLength < maxCStrLength - 1)
625 void ConcatLongIntToCStr(const long theNum,char *theCStr,const int maxCStrLength,const int numDigits)
658 ConcatPStrToCStr(theStr255,theCStr,maxCStrLength);
711 void CopyLongIntToCStr(const long theNum,char *theCStr,const int maxCStrLength,const int numDigits)
744 CopyPStrToCStr(theStr255,theCStr,maxCStrLength);
751 void CopyUnsignedLongIntToCStr(const unsigned long theNum,char *theCStr,const int maxCStrLength)
760 CopyCStrToCStr("0",theCStr,maxCStrLength);
775 if (dstCharIndex >= maxCStrLength - 1 || srcCharIndex <= 0)
2591 OSErr CopyFloatToCStr(const extended80 *theFloat,char *theCStr,const int maxCStrLength,const int inMaxNumIntDigits,const int inMaxNumFractDigits)
2719 CopyPStrToCStr(theStr255,theCStr,maxCStrLength);