/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_gt_types.h | 77 struct intel_llc llc; member in struct:intel_gt
|
/src/sys/netatalk/ |
aarp.c | 167 struct llc *llc; local in function:aarpwhohas 205 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT); 209 llc = mtod(m, struct llc *); 210 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; 211 llc->llc_control = LLC_UI; 212 memcpy(llc->llc_org_code, aarp_org_code, sizeof(aarp_org_code)); 213 llc->llc_ether_type = htons(ETHERTYPE_AARP) 347 struct llc *llc; local in function:at_aarpinput 581 struct llc *llc; local in function:aarpprobe [all...] |
/src/sys/net/ |
if_llc.h | 45 struct llc { struct 96 __CTASSERT(sizeof(struct llc) == 8); 114 * Don't use sizeof(struct llc_un) for LLC header sizes 122 * Unnumbered LLC format commands 142 * Supervisory LLC commands 162 * LLC XID definitions from 802.2, as needed
|
if_ethersubr.c | 335 * llc header. 338 struct llc llc; local in function:ether_output 340 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT); 347 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP; 348 llc.llc_control = LLC_UI; 349 memcpy(llc.llc_snap_org_code, at_org_code, 350 sizeof(llc.llc_snap_org_code)); 351 llc.llc_snap_ether_type = htons(ETHERTYPE_ATALK) 496 struct llc *llc = (struct llc *)(eh + 1); local in function:altq_etherclassify [all...] |
/src/sys/dev/ic/ |
awi.c | 661 len += sizeof(struct llc) - 1193 sizeof(struct llc); 2017 struct llc *llc; local in function:awi_ether_modcap 2028 m_adj(m, sizeof(eh) - sizeof(*llc)); 2033 llc = (struct llc *)(mtod(m, char *) + sizeof(wh)); 2034 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP; 2035 llc->llc_control = LLC_UI [all...] |
/src/sys/net80211/ |
ieee80211_input.c | 938 struct llc *llc; local in function:ieee80211_decap 940 if (m->m_len < hdrlen + sizeof(*llc) && 941 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) { 947 llc = (struct llc *)(mtod(m, char *) + hdrlen); 948 if (llc->llc_dsap == LLC_SNAP_LSAP && 949 llc->llc_ssap == LLC_SNAP_LSAP && 950 llc->llc_control == LLC_UI && 951 llc->llc_snap.org_code[0] == 0 & [all...] |
ieee80211_output.c | 411 #define TO_BE_RECLAIMED (sizeof(struct ether_header) - sizeof(struct llc)) 423 * header and prepending an LLC header. This means we know 425 * sizeof(struct ether_header) - sizeof(struct llc) 537 struct llc *llc; local in function:ieee80211_encap 598 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc)); 599 llc = mtod(m, struct llc *); 600 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP [all...] |