Lines Matching defs:notif
2122 struct notifier **notif = get_notifier_by_type(type);
2123 if (notif) {
2128 np->next = *notif;
2131 *notif = np;
2144 struct notifier **notif = get_notifier_by_type(type);
2145 if (notif) {
2148 for (; (np = *notif) != 0; notif = &np->next) {
2150 *notif = np->next;
2164 notify(struct notifier *notif, int val)
2168 while ((np = notif) != 0) {
2169 notif = np->next;