Lines Matching defs:fapp
879 int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp)
886 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
927 struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new)
933 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
947 new->fa_next = *fapp;
948 rcu_assign_pointer(*fapp, new);
961 static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp)
976 if (fasync_insert_entry(fd, filp, fapp, new)) {
990 int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
993 return fasync_remove_entry(filp, fapp);
994 return fasync_add_entry(fd, filp, fapp);