Lines Matching refs:bufptr
1773 *bufptr, /* Pointer into buffer */ in cups_read_strings() local
1787 for (bufptr = buffer; *bufptr && isspace(*bufptr & 255); bufptr ++); in cups_read_strings()
1789 if (*bufptr != '\"') in cups_read_strings()
1796 bufptr ++; in cups_read_strings()
1797 for (msg = bufptr; *bufptr && *bufptr != '\"'; bufptr ++) in cups_read_strings()
1798 if (*bufptr == '\\' && bufptr[1]) in cups_read_strings()
1799 bufptr ++; in cups_read_strings()
1801 if (!*bufptr) in cups_read_strings()
1804 *bufptr++ = '\0'; in cups_read_strings()
1813 while (*bufptr && isspace(*bufptr & 255)) in cups_read_strings()
1814 bufptr ++; in cups_read_strings()
1816 if (*bufptr != '=') in cups_read_strings()
1819 bufptr ++; in cups_read_strings()
1820 while (*bufptr && isspace(*bufptr & 255)) in cups_read_strings()
1821 bufptr ++; in cups_read_strings()
1823 if (*bufptr != '\"') in cups_read_strings()
1830 bufptr ++; in cups_read_strings()
1831 for (str = bufptr; *bufptr && *bufptr != '\"'; bufptr ++) in cups_read_strings()
1832 if (*bufptr == '\\' && bufptr[1]) in cups_read_strings()
1833 bufptr ++; in cups_read_strings()
1835 if (!*bufptr) in cups_read_strings()
1838 *bufptr++ = '\0'; in cups_read_strings()