Searched defs:ep (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dinet_ntop.c104 char *tp, *ep; local
145 ep = tmp + sizeof(tmp);
146 for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) {
151 if (tp + 1 >= ep) {
161 if (tp + 1 >= ep) {
170 if (!inet_ntop4(src+12, tp, (size_t)(ep - tp)))
175 advance = snprintf(tp, ep - tp, "%x", words[i]);
176 if (advance <= 0 || advance >= ep - tp) {
184 if (tp + 1 >= ep) {
190 if (tp + 1 >= ep) {
[all...]
/bionic/libc/dns/resolv/
H A Dres_mkquery.c128 register u_char *cp, *ep; local
151 ep = buf + buflen;
162 if (ep - cp < QFIXEDSZ)
164 if ((n = dn_comp(dname, cp, ep - cp - QFIXEDSZ, dnptrs,
178 if ((ep - cp) < RRFIXEDSZ)
180 n = dn_comp((const char *)data, cp, ep - cp - RRFIXEDSZ,
200 if (ep - cp < 1 + RRFIXEDSZ + datalen)
238 register u_char *cp, *ep; local
248 ep = buf + buflen;
250 if ((ep
[all...]
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dmktemp.c45 char *start, *cp, *ep; local
57 ep = path + len - slen;
59 for (start = ep; start > path && start[-1] == 'X'; start--)
61 if (ep - start < MIN_X) {
78 for (i = 0; i < nitems(rbuf) && cp != ep; i++)
80 } while (cp != ep);
/bionic/libc/upstream-openbsd/lib/libc/gen/
H A Dfnmatch.c100 classmatch(const char *pattern, char test, int foldcase, const char **ep) argument
109 *ep = mismatch;
116 *ep = mismatch;
119 *ep = colon + 2;
133 *ep = mismatch;
/bionic/libc/dns/
H A Dgethnamaddr.c189 char *bp, **ap, **hap, *ep; local
222 ep = rs->hostbuf + sizeof rs->hostbuf;
229 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
259 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
302 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
306 strlcpy(bp, tbuf, (size_t)(ep - bp));
324 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
328 strlcpy(bp, tbuf, (size_t)(ep - bp));
350 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
385 map_v4v6_hostent(&rs->host, &bp, ep);
629 char *bp, *ep; local
1177 map_v4v6_hostent(struct hostent *hp, char **bpp, char *ep) argument
1320 char qbuf[MAXDNAME + 1], *qp, *ep; local
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dusbdevice_fs.h36 unsigned int ep; member in struct:usbdevfs_bulktransfer
/bionic/libc/dns/net/
H A Dgetaddrinfo.c342 char *ep; local
349 ep = NULL;
351 v = strtoul(p, &ep, 10);
352 if (errno == 0 && ep && *ep == '\0' && v <= UINT_MAX)
1253 char *ep; local
1288 lscopeid = strtoul(scope, &ep, 10);
1290 if (errno == 0 && ep && *ep == '\0' && *scopeid == lscopeid)
1314 char *bp, *ep; local
[all...]

Completed in 115 milliseconds