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

Lines Matching defs:theDstPStr

96 void CopyPStrToPStr(const unsigned char *theSrcPStr,unsigned char *theDstPStr,const int maxDstStrLength)
104 if (theDstPStr != nil && theSrcPStr != nil && theMaxDstStrLength > 0)
114 BlockMove(theSrcPStr + 1,theDstPStr + 1,theMaxDstStrLength - 1);
116 theDstPStr[0] = theMaxDstStrLength - 1;
121 BlockMove(theSrcPStr,theDstPStr,theSrcPStr[0] + 1);
179 void CopyCSubstrToPStr(const char *theSrcCStr,const int maxCharsToCopy,unsigned char *theDstPStr,const int maxDstStrLength)
187 if (theDstPStr != nil && theSrcCStr != nil && theMaxDstStrLength > 0)
199 theDstPStr[0] = i;
206 theDstPStr[i + 1] = theSrcCStr[i];
214 void CopyCStrToPStr(const char *theSrcCStr,unsigned char *theDstPStr,const int maxDstStrLength)
222 if (theDstPStr != nil && theSrcCStr != nil && theMaxDstStrLength > 0)
234 theDstPStr[0] = i;
241 theDstPStr[i + 1] = theSrcCStr[i];
283 void ConcatPStrToPStr(const unsigned char *theSrcPStr,unsigned char *theDstPStr,const int maxDstStrLength)
290 if (theSrcPStr != nil && theDstPStr != nil && theMaxDstStrLength > 0)
298 if (theMaxDstStrLength - theDstPStr[0] - 1 < theSrcPStr[0])
300 BlockMove(theSrcPStr + 1,theDstPStr + theDstPStr[0] + 1,theMaxDstStrLength - 1 - theDstPStr[0]);
302 theDstPStr[0] = theMaxDstStrLength - 1;
307 BlockMove(theSrcPStr + 1,theDstPStr + theDstPStr[0] + 1,theSrcPStr[0]);
309 theDstPStr[0] += theSrcPStr[0];
316 void ConcatCStrToPStr(const char *theSrcCStr,unsigned char *theDstPStr,const int maxDstStrLength)
324 if (theSrcCStr != nil && theDstPStr != nil && theMaxDstStrLength > 0)
332 thePStrLength = theDstPStr[0];
338 theDstPStr[0] = thePStrLength;
345 theDstPStr[thePStrLength + 1] = theSrcCStr[i];
406 void ConcatCharToPStr(const char theChar,unsigned char *theDstPStr,const int maxPStrLength)
411 if (theDstPStr != nil && maxPStrLength > 0)
413 pStrLength = PStrLength(theDstPStr);
417 theDstPStr[pStrLength + 1] = theChar;
418 theDstPStr[0] += 1;