Home
last modified time | relevance | path

Searched refs:nt (Results 1 – 10 of 10) sorted by relevance

/xnu-11215.1.10/bsd/skywalk/namespace/ !
H A Dnetns.c924 struct ns_token *nt; in _netns_reserve_kpi_common() local
954 nt = *token; in _netns_reserve_kpi_common()
955 VERIFY(nt->nt_addr_len == addr_len); in _netns_reserve_kpi_common()
956 VERIFY(memcmp(nt->nt_addr, addr, addr_len) == 0); in _netns_reserve_kpi_common()
957 VERIFY(nt->nt_proto == proto); in _netns_reserve_kpi_common()
958 VERIFY(nt->nt_port == hport); in _netns_reserve_kpi_common()
959 VERIFY((nt->nt_flags & in _netns_reserve_kpi_common()
963 if ((nt->nt_flags & NETNS_CONFIGURATION_FLAGS) == in _netns_reserve_kpi_common()
965 SK_DF(NS_VERB_IP(nt->nt_addr_len) | in _netns_reserve_kpi_common()
966 NS_VERB_PROTO(nt->nt_proto), in _netns_reserve_kpi_common()
[all …]
/xnu-11215.1.10/tools/lldbmacros/ !
H A Dskywalk.py405 def GetNsTokenSummary(nt): argument
411 if (nt.nt_proto == IPPROTO_TCP):
413 elif (nt.nt_proto == IPPROTO_UDP):
416 proto = str(nt.nt_proto)
418 if (nt.nt_addr_len == sizeof('struct in_addr')):
419 addr = GetInAddrAsString(addressof(nt.nt_inaddr))
420 elif (nt.nt_addr_len == sizeof('struct in6_addr')):
421 addr = GetIn6AddrAsString(nt.nt_in6addr.__u6_addr.__u6_addr8)
423 addr = str(nt_addr) + " bad len {:u}".format(nt.nt_addr_len)
427 ports = "%u" % nt.nt_port
[all …]
/xnu-11215.1.10/bsd/skywalk/nexus/flowswitch/ !
H A Dfsw_flow.c455 struct ns_token *__single nt = NULL; in fsw_flow_config() local
473 nt = fe->fe_port_reservation; in fsw_flow_config()
476 netns_change_flags(&nt, NETNS_NOWAKEFROMSLEEP, 0); in fsw_flow_config()
479 netns_change_flags(&nt, 0, NETNS_NOWAKEFROMSLEEP); in fsw_flow_config()
/xnu-11215.1.10/osfmk/corecrypto/ !
H A Dccn_internal.h564 …ounted_by(n) r, const cc_unit *cc_counted_by(n) s, cc_size nt, const cc_unit *cc_counted_by(nt) t);
574 …ounted_by(n) r, const cc_unit *cc_counted_by(n) s, cc_size nt, const cc_unit *cc_counted_by(nt) t);
/xnu-11215.1.10/makedefs/ !
H A DMakeInc.kernel386 …# -nt and -ot are evaluated differently by bash, dash, and zsh (and are not part of the POSIX spec…
388 …$(_v)if [ $(OBJROOT)/.mach_kernel.timestamp -nt $@ -o \( -e $(OBJROOT)/.mach_kernel.timestamp -a \…
438 …# -nt and -ot are evaluated differently by bash, dash, and zsh (and are not part of the POSIX spec…
440 …$(_v)if [ $(OBJROOT)/.mach_kernel.timestamp -nt $@ -o \( -e $(OBJROOT)/.mach_kernel.timestamp -a \…
480 …# -nt and -ot are evaluated differently by bash, dash, and zsh (and are not part of the POSIX spec…
482 …$(_v)if [ $(OBJROOT)/.mach_kernel.timestamp -nt $@ -o \( -e $(OBJROOT)/.mach_kernel.timestamp -a \…
H A DMakeInc.top408 …# -nt and -ot are evaluated differently by bash, dash, and zsh (and are not part of the POSIX spec…
410 …$(_v)while [ \! $(OBJROOT)/.mach_kernel.timestamp.new -nt $(OBJROOT)/.mach_kernel.timestamp -a \( …
/xnu-11215.1.10/osfmk/gssd/ !
H A Dgssd_mach.defs169 in nt : gssd_nametype;
179 in nt : gssd_nametype;
/xnu-11215.1.10/EXTERNAL_HEADERS/corecrypto/ !
H A Dccn.h218 …pn(cc_size ns, const cc_unit *cc_counted_by(ns) s, cc_size nt, const cc_unit *cc_counted_by(nt) t);
/xnu-11215.1.10/osfmk/i386/ !
H A Dpcb.c440 pmap_switch_context(thread_t ot, thread_t nt, int cnum) in pmap_switch_context() argument
443 vm_map_t nmap = nt->map, omap = ot->map; in pmap_switch_context()
446 PMAP_ACTIVATE_MAP(nmap, nt, cnum); in pmap_switch_context()
447 if (__improbable((nt->machine.mthr_do_segchk & MTHR_RSBST) && in pmap_switch_context()
/xnu-11215.1.10/libsyscall/wrappers/skywalk/ !
H A Dos_channel.c832 os_channel_read_nexus_extension_info(const channel_t chd, nexus_type_t *nt, in os_channel_read_nexus_extension_info() argument
838 if (nt != NULL) { in os_channel_read_nexus_extension_info()
839 *nt = nxp->nxp_type; in os_channel_read_nexus_extension_info()