Lines Matching defs:iptr
454 struct intr_dist *iptr;
464 for (iptr = *phead, pptr = phead; iptr != NULL;
465 pptr = &iptr->next, iptr = iptr->next) {
467 if ((iptr->func == func) && (iptr->arg == arg)) {
498 struct intr_dist *iptr;
502 for (iptr = *headp, vect = headp;
503 iptr != NULL; vect = &iptr->next, iptr = iptr->next) {
504 if ((iptr->func == func) && (iptr->arg == arg)) {
505 *vect = iptr->next;
506 kmem_free(iptr, sizeof (struct intr_dist));
574 struct intr_dist *iptr;
612 for (iptr = intr_dist_whead; iptr != NULL; iptr = iptr->next)
613 ((void (*)(void *, int32_t, int32_t))iptr->func)
614 (iptr->arg, max_weight, weight);
617 for (iptr = intr_dist_head; iptr != NULL; iptr = iptr->next)
618 ((void (*)(void *))iptr->func)(iptr->arg);