Home
last modified time | relevance | path

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

/xnu-10002.41.9/tools/lldbmacros/core/
H A Doperating_system.py810 nth = self.thread_cache[th_id]
811 self.threads.append(nth)
812 self.thread_cache[nth['tid']] = nth
830 nth = self.thread_cache[th_id]
832 if cputhread['active_thread'] == nth['ptr']:
833 nth['core'] = cputhread['cpu_id']
834 self.threads.append( nth )
/xnu-10002.41.9/bsd/netinet/
H A Dtcp_subr.c745 struct tcphdr *nth; in tcp_respond() local
792 (sizeof(*ip6) + sizeof(*nth))); in tcp_respond()
796 nth = (struct tcphdr *)(void *)(ip6 + 1); in tcp_respond()
799 (sizeof(*ip) + sizeof(*nth))); in tcp_respond()
802 nth = (struct tcphdr *)(void *)(ip + 1); in tcp_respond()
804 bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr)); in tcp_respond()
827 nth = (struct tcphdr *)(void *)(ip6 + 1); in tcp_respond()
832 nth = (struct tcphdr *)(void *)(ip + 1); in tcp_respond()
834 if (th != nth) { in tcp_respond()
840 nth->th_sport = th->th_sport; in tcp_respond()
[all …]