Home
last modified time | relevance | path

Searched refs:nth (Results 1 – 2 of 2) sorted by relevance

/xnu-11215.81.4/tools/lldbmacros/core/ !
H A Doperating_system.py820 nth = self.thread_cache[th_id]
821 self.threads.append(nth)
822 self.thread_cache[nth['tid']] = nth
840 nth = self.thread_cache[th_id]
842 if cputhread['active_thread'] == nth['ptr']:
843 nth['core'] = cputhread['cpu_id']
844 self.threads.append( nth )
/xnu-11215.81.4/bsd/netinet/ !
H A Dtcp_subr.c764 struct tcphdr *nth; in tcp_respond() local
811 (sizeof(*ip6) + sizeof(*nth))); in tcp_respond()
815 nth = (struct tcphdr *)(void *)(ip6 + 1); in tcp_respond()
818 (sizeof(*ip) + sizeof(*nth))); in tcp_respond()
821 nth = (struct tcphdr *)(void *)(ip + 1); in tcp_respond()
823 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr)); in tcp_respond()
846 nth = (struct tcphdr *)(void *)(ip6 + 1); in tcp_respond()
851 nth = (struct tcphdr *)(void *)(ip + 1); in tcp_respond()
853 if (th != nth) { in tcp_respond()
859 nth->th_sport = th->th_sport; in tcp_respond()
[all …]