Searched refs:rh (Results 1 - 9 of 9) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Droute6.c59 struct ip6_rthdr *rh; local
74 IP6_EXTHDR_CHECK(m, off, sizeof(*rh), return IPPROTO_DONE);
76 rh = (struct ip6_rthdr *)((caddr_t)ip6 + off);
79 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
80 if (rh == NULL) {
86 switch (rh->ip6r_type) {
89 rhlen = (rh->ip6r_len + 1) << 3;
106 IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, rhlen);
107 if (rh
[all...]
H A Dnd6.h340 struct nd_opt_rd_hdr *rh; member in struct:nd_opts::__anon335
355 #define nd_opts_rh nd_opt_each.rh
H A Dip6_output.c453 struct ip6_rthdr *rh = NULL; local
458 rh = mtod(exthdrs.ip6e_rthdr, struct ip6_rthdr *);
459 segleft_org = rh->ip6r_segleft;
460 rh->ip6r_segleft = 0;
492 rh->ip6r_segleft = segleft_org;
504 struct ip6_rthdr *rh = local
510 switch (rh->ip6r_type) {
512 rh0 = (struct ip6_rthdr0 *)rh;
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A DPseudoKernel.h97 struct ReturnHandler rh; /* Return handler address */ member in struct:bbRupt
H A DPseudoKernel.c60 void bbSetRupt(ReturnHandler *rh, thread_t ct);
139 bbr->rh.handler = bbSetRupt; /* Set interruption routine */
141 bbr->rh.next = act->handlers; /* Put our interrupt at the start of the list */
142 act->handlers = &bbr->rh;
157 void bbSetRupt(ReturnHandler *rh, thread_t act) { argument
164 bbr = (bbRupt *)rh; /* Make our area convenient */
H A Dvmachmon.h486 extern void vmm_interrupt(ReturnHandler *rh, thread_t act);
H A Dvmachmon.c1991 ** ReturnHandler *rh - the return handler control block as required by the APC.
1998 void vmm_interrupt(ReturnHandler *rh, thread_t act) { argument
2006 kfree(rh, sizeof(ReturnHandler)); /* Release the return handler block */
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dthread_act.c661 ReturnHandler **rh; local
665 for (rh = &thread->handlers; *rh; rh = &(*rh)->next)
668 if (rh != &thread->special_handler.next)
669 *rh = &thread->special_handler;
706 ReturnHandler *rh; local
713 rh = thread->handlers;
714 if (rh !
778 special_handler( __unused ReturnHandler *rh, thread_t thread) argument
[all...]
H A Dthread.h339 struct ReturnHandler *rh,
572 ReturnHandler *rh,

Completed in 63 milliseconds