Lines Matching refs:endp

89 	u_char *cp, *sp2, *startp, *endp;  in res_nmkupdate()  local
215 endp = startp + rrecp->r_size - 1; in res_nmkupdate()
219 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
234 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
247 endp)) in res_nmkupdate()
267 soanum = getnum_str(&startp, endp); in res_nmkupdate()
283 n = getnum_str(&startp, endp); in res_nmkupdate()
288 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
297 n = getnum_str(&startp, endp); in res_nmkupdate()
303 n = getnum_str(&startp, endp); in res_nmkupdate()
309 n = getnum_str(&startp, endp); in res_nmkupdate()
315 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
324 n = getnum_str(&startp, endp); in res_nmkupdate()
331 endp)) in res_nmkupdate()
345 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
353 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
363 while (getword_str(buf2, sizeof buf2, &startp, endp)) { in res_nmkupdate()
383 &startp, endp)) < 0) in res_nmkupdate()
396 &startp, endp)) < 0) { in res_nmkupdate()
412 endp)) < 0) in res_nmkupdate()
424 endp)) < 0) in res_nmkupdate()
433 endp)) < 0) in res_nmkupdate()
469 &startp, endp)) < 0) in res_nmkupdate()
477 n = getnum_str(&startp, endp); in res_nmkupdate()
483 n = getnum_str(&startp, endp); in res_nmkupdate()
489 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
508 endp)) in res_nmkupdate()
518 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
528 n = getnum_str(&startp, endp); in res_nmkupdate()
534 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
543 &startp, endp)) < 0) in res_nmkupdate()
556 n = gethexnum_str(&startp, endp); in res_nmkupdate()
562 n = getnum_str(&startp, endp); in res_nmkupdate()
568 n = getnum_str(&startp, endp); in res_nmkupdate()
575 &startp, endp)) < 0) in res_nmkupdate()
591 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
602 endp)) in res_nmkupdate()
620 n = getnum_str(&startp, endp); in res_nmkupdate()
626 n = getnum_str(&startp, endp); in res_nmkupdate()
632 n = getnum_str(&startp, endp); in res_nmkupdate()
639 &startp, endp)) < 0) in res_nmkupdate()
649 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
660 n = getnum_str(&startp, endp); in res_nmkupdate()
666 n = getnum_str(&startp, endp); in res_nmkupdate()
673 &startp, endp)) < 0) { in res_nmkupdate()
684 &startp, endp)) < 0) { in res_nmkupdate()
695 &startp, endp)) < 0) { in res_nmkupdate()
705 if (!getword_str(buf2, sizeof buf2, &startp, endp)) in res_nmkupdate()
733 getword_str(char *buf, int size, u_char **startpp, u_char *endp) { in getword_str() argument
737 for (cp = buf; *startpp <= endp; ) { in getword_str()
763 getstr_str(char *buf, int size, u_char **startpp, u_char *endp) { in getstr_str() argument
771 for (cp = buf; *startpp <= endp; ) { in getstr_str()
841 gethexnum_str(u_char **startpp, u_char *endp) { in gethexnum_str() argument
846 if (*startpp + 2 >= endp || strncasecmp((char *)*startpp, "0x", 2) != 0) in gethexnum_str()
847 return getnum_str(startpp, endp); in gethexnum_str()
849 for (n = 0; *startpp <= endp; ) { in gethexnum_str()
860 while ((*startpp <= endp) && in gethexnum_str()
889 getnum_str(u_char **startpp, u_char *endp) { in getnum_str() argument
894 for (n = 0; *startpp <= endp; ) { in getnum_str()
905 while ((*startpp <= endp) && in getnum_str()