Symbol: dl_capability_req_t
usr/src/uts/common/inet/ip/ip6_if.c
2318
capab_mp = ip_dlpi_alloc(sizeof (dl_capability_req_t),
usr/src/uts/common/inet/ip/ip_if.c
1376
mp = ip_dlpi_alloc(sizeof (dl_capability_req_t), DL_CAPABILITY_REQ);
usr/src/uts/common/inet/ip/ip_if.c
1410
dl_capability_req_t *capb;
usr/src/uts/common/inet/ip/ip_if.c
1430
mp = allocb_wait(size + sizeof (dl_capability_req_t), BPRI_MED,
usr/src/uts/common/inet/ip/ip_if.c
1434
bzero(mp->b_rptr, size + sizeof (dl_capability_req_t));
usr/src/uts/common/inet/ip/ip_if.c
1436
capb = (dl_capability_req_t *)mp->b_rptr;
usr/src/uts/common/inet/ip/ip_if.c
1438
capb->dl_sub_offset = sizeof (dl_capability_req_t);
usr/src/uts/common/inet/ip/ip_if.c
1441
mp->b_wptr += sizeof (dl_capability_req_t);
usr/src/uts/common/inet/ip/ip_if.c
1601
dl_capability_req_t *ocap;
usr/src/uts/common/inet/ip/ip_if.c
1689
size = sizeof (dl_capability_req_t) +
usr/src/uts/common/inet/ip/ip_if.c
1701
ocap = (dl_capability_req_t *)nmp->b_rptr;
usr/src/uts/common/inet/ip/ip_if.c
1703
sizeof (dl_capability_req_t);
usr/src/uts/common/inet/ip/ip_if.c
1707
nmp->b_rptr += sizeof (dl_capability_req_t);
usr/src/uts/common/inet/ip/ip_if.c
1762
dl_capability_req_t *oc;
usr/src/uts/common/inet/ip/ip_if.c
1831
size = sizeof (dl_capability_req_t) +
usr/src/uts/common/inet/ip/ip_if.c
1844
oc = (dl_capability_req_t *)rptr;
usr/src/uts/common/inet/ip/ip_if.c
1845
oc->dl_sub_offset = sizeof (dl_capability_req_t);
usr/src/uts/common/inet/ip/ip_if.c
1848
rptr += sizeof (dl_capability_req_t);
usr/src/uts/common/io/dld/dld_proto.c
1061
dl_capability_req_t *dlp = (dl_capability_req_t *)mp->b_rptr;
usr/src/uts/common/io/dld/dld_proto.c
1068
if (MBLKL(mp) < sizeof (dl_capability_req_t)) {
usr/src/uts/common/io/gld.c
3393
dl_capability_req_t *dlp = (dl_capability_req_t *)mp->b_rptr;
usr/src/uts/common/io/gld.c
3472
dl_capability_req_t *dlp;
usr/src/uts/common/io/gld.c
3480
dlp = (dl_capability_req_t *)mp->b_rptr;
usr/src/uts/common/io/softmac/softmac_capab.c
100
dl_capability_req_t *capb;
usr/src/uts/common/io/softmac/softmac_capab.c
105
if ((mp = allocb(sizeof (dl_capability_req_t), BPRI_MED)) == NULL)
usr/src/uts/common/io/softmac/softmac_capab.c
109
capb = (dl_capability_req_t *)mp->b_wptr;
usr/src/uts/common/io/softmac/softmac_capab.c
110
mp->b_wptr += sizeof (dl_capability_req_t);
usr/src/uts/common/io/softmac/softmac_capab.c
111
bzero(mp->b_rptr, sizeof (dl_capability_req_t));
usr/src/uts/common/io/softmac/softmac_capab.c
217
dl_capability_req_t *capb;
usr/src/uts/common/io/softmac/softmac_capab.c
238
reqmp = allocb(sizeof (dl_capability_req_t) + size, BPRI_MED);
usr/src/uts/common/io/softmac/softmac_capab.c
242
bzero(reqmp->b_rptr, sizeof (dl_capability_req_t) + size);
usr/src/uts/common/io/softmac/softmac_capab.c
245
reqmp->b_wptr = reqmp->b_rptr + sizeof (dl_capability_req_t) + size;
usr/src/uts/common/io/softmac/softmac_capab.c
247
capb = (dl_capability_req_t *)reqmp->b_rptr;
usr/src/uts/common/io/softmac/softmac_capab.c
253
capb->dl_sub_offset = sizeof (dl_capability_req_t);
usr/src/uts/common/io/softmac/softmac_fp.c
442
dl_capability_req_t *dlp = (dl_capability_req_t *)mp->b_rptr;
usr/src/uts/common/io/softmac/softmac_fp.c
450
if (MBLKL(mp) < sizeof (dl_capability_req_t)) {
usr/src/uts/common/sys/dlpi.h
1513
dl_capability_req_t capability_req;
usr/src/uts/common/sys/dlpi.h
1581
#define DL_CAPABILITY_REQ_SIZE sizeof (dl_capability_req_t)