Home
last modified time | relevance | path

Searched refs:eabuf (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsocket/inet/
H A Dether_addr.c244 eabuf_t *eabuf; in ea_buf() local
251 eabuf = pthread_getspecific(key); in ea_buf()
252 if (eabuf == NULL) { in ea_buf()
253 eabuf = malloc(sizeof (eabuf_t)); in ea_buf()
254 (void) thr_setspecific(key, eabuf); in ea_buf()
256 return (eabuf); in ea_buf()
280 eabuf_t *eabuf; in ether_ntoa() local
282 if ((eabuf = ea_buf()) == NULL) in ether_ntoa()
284 return (ether_ntoa_r(e, eabuf->ea_string)); in ether_ntoa()
312 eabuf_t *eabuf; in ether_aton() local
[all …]
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_log.c518 char *nvbuf, *eabuf; in fmd_log_append() local
613 eabuf = fmd_alloc(easize, FMD_SLEEP); in fmd_log_append()
614 (void) ea_pack_object(&grp0, eabuf, easize); in fmd_log_append()
633 } else if (fmd_log_write(lp, eabuf, easize) == easize) { in fmd_log_append()
665 fmd_free(eabuf, easize); in fmd_log_append()