/src/sys/arch/dreamcast/dreamcast/ |
sysasic.c | 258 struct syh_eventhand *evh; local in function:sysasic_intr 294 evh = &sysasic_eventhand[n]; 296 KDASSERT(evh->hnd_fn); 297 if ((*evh->hnd_fn)(evh->hnd_arg)) 300 (*evh->hnd_fn)(evh->hnd_arg);
|
sysasic.c | 258 struct syh_eventhand *evh; local in function:sysasic_intr 294 evh = &sysasic_eventhand[n]; 296 KDASSERT(evh->hnd_fn); 297 if ((*evh->hnd_fn)(evh->hnd_arg)) 300 (*evh->hnd_fn)(evh->hnd_arg);
|
/src/sys/net/ |
if_l2tp.c | 1454 struct ether_vlan_header evh; local in function:l2tp_tcpmss_clamp 1460 if (m->m_pkthdr.len < sizeof(evh)) { 1466 m_copydata(m, 0, sizeof(evh), (void *)&evh); 1467 eh = (struct ether_header *)&evh; 1474 switch (ntohs(evh.evl_proto)) { 1498 *mtod(m, struct ether_vlan_header *) = evh;
|
if_l2tp.c | 1454 struct ether_vlan_header evh; local in function:l2tp_tcpmss_clamp 1460 if (m->m_pkthdr.len < sizeof(evh)) { 1466 m_copydata(m, 0, sizeof(evh), (void *)&evh); 1467 eh = (struct ether_header *)&evh; 1474 switch (ntohs(evh.evl_proto)) { 1498 *mtod(m, struct ether_vlan_header *) = evh;
|
/src/sys/dev/ic/ |
hme.c | 747 struct ether_vlan_header *evh; local in function:hme_get 759 evh = (struct ether_vlan_header *)eh; 760 if (ntohs(evh->evl_proto) != ETHERTYPE_IP)
|
hme.c | 747 struct ether_vlan_header *evh; local in function:hme_get 759 evh = (struct ether_vlan_header *)eh; 760 if (ntohs(evh->evl_proto) != ETHERTYPE_IP)
|
/src/sys/dev/pci/ |
if_mcx.c | 7864 struct ether_vlan_header *evh; local in function:mcx_send_common_locked 7865 evh = (struct ether_vlan_header *) 7868 m_copydata(m, 0, ETHER_HDR_LEN, evh); 7869 evh->evl_proto = evh->evl_encap_proto; 7870 evh->evl_encap_proto = htons(ETHERTYPE_VLAN); 7871 evh->evl_tag = htons(vlan_get_tag(m));
|
if_mcx.c | 7864 struct ether_vlan_header *evh; local in function:mcx_send_common_locked 7865 evh = (struct ether_vlan_header *) 7868 m_copydata(m, 0, ETHER_HDR_LEN, evh); 7869 evh->evl_proto = evh->evl_encap_proto; 7870 evh->evl_encap_proto = htons(ETHERTYPE_VLAN); 7871 evh->evl_tag = htons(vlan_get_tag(m));
|