Home | History | Annotate | Download | only in pppd

Lines Matching refs:notif

1833 add_notifier(notif, func, arg)
1834 struct notifier **notif;
1843 np->next = *notif;
1846 *notif = np;
1854 remove_notifier(notif, func, arg)
1855 struct notifier **notif;
1861 for (; (np = *notif) != 0; notif = &np->next) {
1863 *notif = np->next;
1874 notify(notif, val)
1875 struct notifier *notif;
1880 while ((np = notif) != 0) {
1881 notif = np->next;