Lines Matching refs:colon
328 const char *s, *colon;
336 colon = strchr(s, ':');
337 if (colon) /* Skip over the ZaphodPipes */
338 s = colon + 1;
374 const char *str, *colon;
378 if (str == NULL || (colon = strchr(str, ':')) == NULL) {
386 while (str < colon) {
4993 const char *str, *colon;
5004 colon = strchr(str, ':');
5005 if (colon == NULL)
5008 if (strncmp(str, output->name, colon-str) == 0 &&
5009 output->name[colon-str] == '\0') {
5013 str = colon + 1;
5014 colon = strchr(str, ',');
5015 if (colon)
5016 len = colon - str;
5029 str = strchr(colon + 1, ',');