Lines Matching defs:e
81 struct ether_addr *e /* function output */
90 NSS_XbyY_INIT(&arg, e, NULL, 0, str2ether);
106 const struct ether_addr *e /* function input */
116 arg.key.ether = (void *)e;
134 struct ether_addr *e, /* ethernet address struct to be filled in */
147 e->ether_addr_octet[i] = (uchar_t)t[i];
158 * b->buf.result is initialized (not NULL). I.e. it always happens
164 * only if b->buf.buffer is initialized. I.e. it always happens
264 ether_ntoa_r(const struct ether_addr *e, char *buf)
267 e->ether_addr_octet[0], e->ether_addr_octet[1],
268 e->ether_addr_octet[2], e->ether_addr_octet[3],
269 e->ether_addr_octet[4], e->ether_addr_octet[5]);
278 ether_ntoa(const struct ether_addr *e)
284 return (ether_ntoa_r(e, eabuf->ea_string));
292 ether_aton_r(const char *s, struct ether_addr *e)
301 e->ether_addr_octet[i] = (uchar_t)t[i];
302 return (e);