Home
last modified time | relevance | path

Searched refs:CHANF_IF_ADV (Results 1 – 3 of 3) sorted by relevance

/xnu-10002.1.13/bsd/skywalk/channel/
H A Dchannel.c1786 if ((ch->ch_flags & CHANF_IF_ADV) != 0) { in ch_close_common()
1789 os_atomic_andnot(&ch->ch_flags, CHANF_IF_ADV, relaxed); in ch_close_common()
2331 if ((ch->ch_flags & CHANF_IF_ADV) != 0) { in ch_configure_interface_advisory_event()
2336 os_atomic_or(&ch->ch_flags, CHANF_IF_ADV, relaxed); in ch_configure_interface_advisory_event()
2343 if ((ch->ch_flags & CHANF_IF_ADV) == 0) { in ch_configure_interface_advisory_event()
2349 os_atomic_andnot(&ch->ch_flags, CHANF_IF_ADV, relaxed); in ch_configure_interface_advisory_event()
2458 CHANF_EXT_PRECONNECT | CHANF_IF_ADV))); in ch_free()
H A Dchannel_var.h185 #define CHANF_IF_ADV 0x2000 /* interface advisory is active */ macro
/xnu-10002.1.13/bsd/skywalk/nexus/
H A Dnexus.c3181 flags |= (ch_flags & CHANF_IF_ADV) ? SCHF_IF_ADV : 0; in nexus_channel_get_flags()