Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:ep

180 	const u_int8_t *ep, *q;
183 ep = p + l;
184 while (l > 0 && q < ep) {
243 const u_char *ep;
249 /* 'ep' points to the end of available data. */
250 ep = snapend;
461 icmp6_rrenum_print(bp, ep);
465 icmp6_nodeinfo_print(length, bp, ep);
524 const u_char *ep;
533 /* 'ep' points to the end of available data. */
534 ep = snapend;
542 while (bp < ep) {
606 const u_char *cp, *ep;
610 #define ECHECK(var) if ((u_char *)&(var) > ep - sizeof(var)) return
613 /* 'ep' points to the end of available data. */
614 ep = snapend;
616 while (cp < ep) {
624 if (cp + (op->nd_opt_len << 3) > ep)
730 const u_char *ep;
732 /* 'ep' points to the end of available data. */
733 ep = snapend;
735 if ((u_char *)mp + sizeof(*mp) > ep)
867 dnsname_print(const u_char *cp, const u_char *ep)
873 while (cp < ep) {
876 if (i > ep - cp) {
880 while (i-- && cp < ep) {
884 if (cp + 1 < ep && *cp)
887 if (cp == ep) {
890 } else if (cp + 1 == ep && *cp == '\0') {
903 icmp6_nodeinfo_print(u_int icmp6len, const u_char *bp, const u_char *ep)
911 if (ep < bp)
915 siz = ep - bp;
997 if (cp[0] == ep - cp - 1) {
1003 while (cp < ep) {
1009 dnsname_print(cp, ep);
1093 if (cp[0] == ep - cp - 1) {
1099 while (cp < ep) {
1105 dnsname_print(cp, ep);
1152 icmp6_rrenum_print(const u_char *bp, const u_char *ep)
1161 if (ep < bp)