Lines Matching refs:notif
2021 add_notifier(notif, func, arg) in add_notifier() argument
2022 struct notifier **notif; in add_notifier()
2031 np->next = *notif;
2034 *notif = np;
2042 remove_notifier(notif, func, arg) in remove_notifier() argument
2043 struct notifier **notif; in remove_notifier()
2049 for (; (np = *notif) != 0; notif = &np->next) {
2051 *notif = np->next;
2062 notify(notif, val) in notify() argument
2063 struct notifier *notif; in notify()
2068 while ((np = notif) != 0) {
2069 notif = np->next;