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

Lines Matching refs:theCStr

69 void CopyPStrToCStr(const unsigned char *thePStr,char *theCStr,const int maxCStrLength)
74 if (thePStr != nil && theCStr != nil && maxCStrLength > 0)
82 theCStr[i] = 0;
89 theCStr[i] = thePStr[i + 1];
248 void ConcatPStrToCStr(const unsigned char *thePStr,char *theCStr,const int maxCStrLength)
253 if (thePStr != nil && theCStr != nil && maxCStrLength > 0)
255 for (cStrLength = 0;theCStr[cStrLength] != 0;cStrLength++)
268 theCStr[cStrLength++] = 0;
275 theCStr[cStrLength++] = thePStr[i + 1];
604 int CompareCStrToPStr(const char *theCStr,const unsigned char *thePStr,const Boolean ignoreCase)
612 if (theCStr != nil && thePStr != nil)
616 returnValue = CompareCStrs(theCStr,tempString,ignoreCase);
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);
777 theCStr[dstCharIndex] = 0;
782 theCStr[dstCharIndex++] = tempString[--srcCharIndex];
2205 char theCStr[256];
2219 CopyPStrToCStr(theSrcPStr,theCStr,sizeof(theCStr));
2222 errCode = ExtractIntFromCStr(theCStr,outInt,skipLeadingSpaces);
2591 OSErr CopyFloatToCStr(const extended80 *theFloat,char *theCStr,const int maxCStrLength,const int inMaxNumIntDigits,const int inMaxNumFractDigits)
2602 if (theCStr == nil)
2604 SetErrorMessage("CopyFloatToCStr: Bad parameter, theCStr == nil");
2719 CopyPStrToCStr(theStr255,theCStr,maxCStrLength);