Home | History | Annotate | Download | only in libresolv

Lines Matching refs:endp

87 	u_char *cp, *sp2, *startp, *endp;
210 endp = startp + rrecp->r_size - 1;
214 if (!getword_str(buf2, sizeof buf2, &startp, endp))
229 if (!getword_str(buf2, sizeof buf2, &startp, endp))
242 endp))
262 soanum = getnum_str(&startp, endp);
278 n = getnum_str(&startp, endp);
283 if (!getword_str(buf2, sizeof buf2, &startp, endp))
292 n = getnum_str(&startp, endp);
298 n = getnum_str(&startp, endp);
304 n = getnum_str(&startp, endp);
310 if (!getword_str(buf2, sizeof buf2, &startp, endp))
319 n = getnum_str(&startp, endp);
326 endp))
340 if (!getword_str(buf2, sizeof buf2, &startp, endp))
348 if (!getword_str(buf2, sizeof buf2, &startp, endp))
358 while (getword_str(buf2, sizeof buf2, &startp, endp)) {
378 &startp, endp)) < 0)
391 &startp, endp)) < 0) {
407 endp)) < 0)
419 endp)) < 0)
428 endp)) < 0)
462 &startp, endp)) < 0)
470 n = getnum_str(&startp, endp);
476 n = getnum_str(&startp, endp);
482 if (!getword_str(buf2, sizeof buf2, &startp, endp))
505 endp))
515 if (!getword_str(buf2, sizeof buf2, &startp, endp))
525 n = getnum_str(&startp, endp);
531 if (!getword_str(buf2, sizeof buf2, &startp, endp))
540 &startp, endp)) < 0)
552 n = gethexnum_str(&startp, endp);
558 n = getnum_str(&startp, endp);
564 n = getnum_str(&startp, endp);
571 &startp, endp)) < 0)
587 if (!getword_str(buf2, sizeof buf2, &startp, endp))
598 endp))
616 n = getnum_str(&startp, endp);
622 n = getnum_str(&startp, endp);
628 n = getnum_str(&startp, endp);
635 &startp, endp)) < 0)
645 if (!getword_str(buf2, sizeof buf2, &startp, endp))
656 n = getnum_str(&startp, endp);
662 n = getnum_str(&startp, endp);
669 &startp, endp)) < 0) {
680 &startp, endp)) < 0) {
691 &startp, endp)) < 0) {
701 if (!getword_str(buf2, sizeof buf2, &startp, endp))
729 getword_str(char *buf, size_t size, u_char **startpp, u_char *endp) {
733 for (cp = buf; *startpp <= endp; ) {
759 getstr_str(char *buf, size_t size, u_char **startpp, u_char *endp) {
767 for (cp = buf; *startpp <= endp; ) {
837 gethexnum_str(u_char **startpp, u_char *endp) {
842 if (*startpp + 2 >= endp || strncasecmp((char *)*startpp, "0x", 2) != 0)
843 return getnum_str(startpp, endp);
845 for (n = 0; *startpp <= endp; ) {
856 while ((*startpp <= endp) &&
885 getnum_str(u_char **startpp, u_char *endp) {
890 for (n = 0; *startpp <= endp; ) {
901 while ((*startpp <= endp) &&