Searched refs:iface (Results 1 – 3 of 3) sorted by relevance
| /xnu-8792.41.9/tools/lldbmacros/ |
| H A D | net.py | 53 iface = Cast(ifnet, 'ifnet *') 57 if iface : 58 …g += format_string.format(iface.if_xname, (iface.if_flags & 0xffff), GetIfFlagsAsString(iface.if_f… 61 if iface.if_snd and iface.if_snd.ifcq_len : 62 out_string += "\n\t" + str(iface.if_snd.ifcq_len) 331 iface = Cast(dlil_ifnet, 'ifnet *') 340 …g += format_string.format(iface.if_xname, (iface.if_flags & 0xffff), GetIfFlagsAsString(iface.if_f… 342 …"[" + str(iface.if_name) + str(int(iface.if_unit)) + "]", (iface.if_flags & 0xffff), GetIfFlagsAsS… 343 if (iface.if_eflags) : 344 …out_string += extended_flags_format_string.format(iface.if_eflags, GetIfEflagsAsString(iface.if_ef… [all …]
|
| /xnu-8792.41.9/tests/ |
| H A D | aqm_qdelay_utun.c | 146 aqmstats_setup(char *iface) in aqmstats_setup() argument 151 ifindex = if_nametoindex(iface); in aqmstats_setup() 160 strlcpy(ifqr.ifqr_name, iface, sizeof(ifqr.ifqr_name)); in aqmstats_setup()
|
| /xnu-8792.41.9/bsd/net/ |
| H A D | if_bridge.c | 6149 #define CARP_CHECK_WE_ARE_DST(iface) \ 6150 ((iface)->if_carp &&\ 6151 carp_forus((iface)->if_carp, eh_in.ether_dhost)) 6152 #define CARP_CHECK_WE_ARE_SRC(iface) \ 6153 ((iface)->if_carp &&\ 6154 carp_forus((iface)->if_carp, eh_in.ether_shost)) 6156 #define CARP_CHECK_WE_ARE_DST(iface) 0 6157 #define CARP_CHECK_WE_ARE_SRC(iface) 0 6164 #define GRAB_OUR_PACKETS(iface) \ 6165 if ((iface)->if_type == IFT_GIF) \ [all …]
|