• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/lib/openssl-1.0.0d/MacOS/GetHTTPS.src/

Lines Matching refs:inSrcCStr

2232 int CountOccurencesOfCharInCStr(const char inChar,const char *inSrcCStr)
2238 if (inSrcCStr != nil && inChar != '\0')
2242 for (theSrcCharIndex = 0;inSrcCStr[theSrcCharIndex] != '\0';theSrcCharIndex++)
2244 if (inSrcCStr[theSrcCharIndex] == inChar)
2255 int CountWordsInCStr(const char *inSrcCStr)
2260 if (inSrcCStr != nil)
2266 while (*inSrcCStr == ' ')
2268 inSrcCStr++;
2271 while (*inSrcCStr != '\0')
2275 while (*inSrcCStr != ' ' && *inSrcCStr != '\0')
2277 inSrcCStr++;
2280 while (*inSrcCStr == ' ')
2282 inSrcCStr++;
2320 void ExtractCStrItemFromCStr(const char *inSrcCStr,const char inItemDelimiter,const int inItemNumber,Boolean *foundItem,char *outDstCharPtr,const int inDstCharPtrMaxLength,const Boolean inTreatMultipleDelimsAsSingleDelim)
2342 while (inSrcCStr[theSrcCharIndex] != inItemDelimiter && inSrcCStr[theSrcCharIndex] != '\0')
2347 if (inSrcCStr[theSrcCharIndex] == inItemDelimiter)
2353 while (inSrcCStr[theSrcCharIndex] == inItemDelimiter)
2361 if (inSrcCStr[theSrcCharIndex] == '\0')
2378 if (inSrcCStr[theSrcCharIndex] == 0 || inSrcCStr[theSrcCharIndex] == inItemDelimiter || theDstCharIndex >= inDstCharPtrMaxLength - 1)
2385 outDstCharPtr[theDstCharIndex++] = inSrcCStr[theSrcCharIndex++];
2397 OSErr ExtractCStrItemFromCStrIntoNewHandle(const char *inSrcCStr,const char inItemDelimiter,const int inItemNumber,Boolean *foundItem,Handle *outNewHandle,const Boolean inTreatMultipleDelimsAsSingleDelim)
2405 if (inSrcCStr == nil)
2407 SetErrorMessage("ExtractCStrItemFromCStrIntoNewHandle: Bad parameter, inSrcCStr == nil");
2447 while (inSrcCStr[theSrcCharIndex] != inItemDelimiter && inSrcCStr[theSrcCharIndex] != '\0')
2452 if (inSrcCStr[theSrcCharIndex] == inItemDelimiter)
2458 while (inSrcCStr[theSrcCharIndex] == inItemDelimiter)
2466 if (inSrcCStr[theSrcCharIndex] == '\0')
2480 if (inSrcCStr[theSrcCharIndex + theItemLength] == 0 || inSrcCStr[theSrcCharIndex + theItemLength] == inItemDelimiter)
2495 BlockMove(inSrcCStr + theSrcCharIndex,**outNewHandle,theItemLength);