Home
last modified time | relevance | path

Searched refs:theDstCStr (Results 1 – 2 of 2) sorted by relevance

/minix3/crypto/external/bsd/openssl/dist/MacOS/GetHTTPS.src/
H A DCPStringUtils.hpp9 void CopyCStrToCStr(const char *theSrcCStr,char *theDstCStr,const int maxDstStrLength);
14 void ConcatCStrToCStr(const char *theSrcCStr,char *theDstCStr,const int maxCStrLength);
16 void ConcatCharToCStr(const char theChar,char *theDstCStr,const int maxCStrLength);
29 void CopyCStrAndConcatLongIntToCStr(const char *theSrcCStr,const long theNum,char *theDstCStr,const…
55 void CopyCSubstrToCStr(const char *theSrcCStr,const int maxCharsToCopy,char *theDstCStr,const int m…
58 void InsertCStrIntoCStr(const char *theSrcCStr,const int theInsertionOffset,char *theDstCStr,const …
59 …Str(const unsigned char *theSrcPStr,const int theInsertionOffset,char *theDstCStr,const int maxDst…
62 …ertCStrIntoCStr(const char *theSrcCStr,const char *theInsertCStr,char *theDstCStr,const int maxDst…
64 … *theSrcCStr,const char **theInsertCStrs,const long *theLongInts,char *theDstCStr,const int maxDst…
66 void CopyCStrAndInsert1LongIntIntoCStr(const char *theSrcCStr,const long theNum,char *theDstCStr,co…
[all …]
H A DCPStringUtils.cpp127 void CopyCStrToCStr(const char *theSrcCStr,char *theDstCStr,const int maxDstStrLength) in CopyCStrToCStr() argument
132 if (theDstCStr != nil && theSrcCStr != nil && maxDstStrLength > 0) in CopyCStrToCStr()
138 theDstCStr[i] = 0; in CopyCStrToCStr()
145 theDstCStr[i] = theSrcCStr[i]; in CopyCStrToCStr()
153 void CopyCSubstrToCStr(const char *theSrcCStr,const int maxCharsToCopy,char *theDstCStr,const int m… in CopyCSubstrToCStr() argument
158 if (theDstCStr != nil && theSrcCStr != nil && maxDstStrLength > 0) in CopyCSubstrToCStr()
164 theDstCStr[i] = 0; in CopyCSubstrToCStr()
171 theDstCStr[i] = theSrcCStr[i]; in CopyCSubstrToCStr()
355 void ConcatCStrToCStr(const char *theSrcCStr,char *theDstCStr,const int maxCStrLength) in ConcatCStrToCStr() argument
360 if (theSrcCStr != nil && theDstCStr != nil && maxCStrLength > 0) in ConcatCStrToCStr()
[all …]