Searched refs:resptr (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/cups-372.4/cups/cgi-bin/
H A Dipp-var.c824 *resptr; /* Pointer into resource */ local
887 for (rawptr = rawresource, resptr = resource; *rawptr; rawptr ++)
892 if (resptr < (resource + sizeof(resource) - 3))
894 *resptr++ = '%';
895 *resptr++ = hexchars[(*rawptr >> 4) & 15];
896 *resptr++ = hexchars[*rawptr & 15];
899 else if (resptr < (resource + sizeof(resource) - 1))
900 *resptr++ = *rawptr;
902 *resptr = '\0';
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dconflicts.c208 *resptr, /* Pointer into option/choice */ local
308 for (resval ++, resptr = resoption;
311 if (resptr < (resoption + sizeof(resoption) - 1))
312 *resptr++ = *resval;
314 *resptr = '\0';
319 for (resptr = reschoice;
322 if (resptr < (reschoice + sizeof(reschoice) - 1))
323 *resptr++ = *resval;
325 *resptr = '\0';
H A Dhttp-support.c1302 char *resptr = resource + strlen(resource); local
1304 uri = http_copy_decode(resptr, uri,
1305 resourcelen - (int)(resptr - resource), NULL,
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dprinters.c3630 const char *resptr; /* Pointer into resolution keyword */ local
4299 xdpi = ydpi = (int)strtol(choice->choice, (char **)&resptr, 10);
4300 if (resptr > choice->choice && xdpi > 0 && *resptr == 'x')
4301 ydpi = (int)strtol(resptr + 1, (char **)&resptr, 10);
4328 xdpi = ydpi = (int)strtol(ppd_attr->value, (char **)&resptr, 10);
4329 if (resptr > ppd_attr->value && xdpi > 0)
4331 if (*resptr == 'x')
4332 ydpi = (int)strtol(resptr
[all...]

Completed in 217 milliseconds