Lines Matching refs:lineptr
4080 *lineptr, /* Pointer into line */ in cups_get_dests() local
4104 while (cupsFileGetConf(fp, line, sizeof(line), &lineptr, &linenum)) in cups_get_dests()
4111 linenum, line, lineptr)); in cups_get_dests()
4113 if ((_cups_strcasecmp(line, "dest") && _cups_strcasecmp(line, "default")) || !lineptr) in cups_get_dests()
4119 name = lineptr; in cups_get_dests()
4125 while (!isspace(*lineptr & 255) && *lineptr && *lineptr != '/') in cups_get_dests()
4126 lineptr ++; in cups_get_dests()
4128 if (*lineptr == '/') in cups_get_dests()
4134 *lineptr++ = '\0'; in cups_get_dests()
4135 instance = lineptr; in cups_get_dests()
4141 while (!isspace(*lineptr & 255) && *lineptr) in cups_get_dests()
4142 lineptr ++; in cups_get_dests()
4147 if (*lineptr) in cups_get_dests()
4148 *lineptr++ = '\0'; in cups_get_dests()
4195 dest->num_options = cupsParseOptions(lineptr, dest->num_options, &(dest->options)); in cups_get_dests()