Searched refs:iface (Results 1 – 3 of 3) sorted by relevance
| /xnu-10063.101.15/tools/lldbmacros/ |
| H A D | net.py | 48 iface = Cast(ifnet, 'ifnet *') 52 if iface : 53 …g += format_string.format(iface.if_xname, (iface.if_flags & 0xffff), GetIfFlagsAsString(iface.if_f… 56 if iface.if_snd and iface.if_snd.ifcq_len : 57 out_string += "\n\t" + str(iface.if_snd.ifcq_len) 326 iface = Cast(dlil_ifnet, 'ifnet *') 335 …g += format_string.format(iface.if_xname, (iface.if_flags & 0xffff), GetIfFlagsAsString(iface.if_f… 337 …"[" + str(iface.if_name) + str(int(iface.if_unit)) + "]", (iface.if_flags & 0xffff), GetIfFlagsAsS… 338 if (iface.if_eflags) : 339 …out_string += extended_flags_format_string.format(iface.if_eflags, GetIfEflagsAsString(iface.if_ef… [all …]
|
| /xnu-10063.101.15/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-10063.101.15/bsd/net/ |
| H A D | if_bridge.c | 6307 #define CARP_CHECK_WE_ARE_DST(iface) \ 6308 ((iface)->if_carp &&\ 6309 carp_forus((iface)->if_carp, eh_in.ether_dhost)) 6310 #define CARP_CHECK_WE_ARE_SRC(iface) \ 6311 ((iface)->if_carp &&\ 6312 carp_forus((iface)->if_carp, eh_in.ether_shost)) 6314 #define CARP_CHECK_WE_ARE_DST(iface) 0 6315 #define CARP_CHECK_WE_ARE_SRC(iface) 0 6322 #define GRAB_OUR_PACKETS(iface) \ 6323 if ((iface)->if_type == IFT_GIF) \ [all …]
|