Lines Matching defs:fapp
862 int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp)
869 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
910 struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new)
916 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
930 new->fa_next = *fapp;
931 rcu_assign_pointer(*fapp, new);
944 static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp)
959 if (fasync_insert_entry(fd, filp, fapp, new)) {
973 int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
976 return fasync_remove_entry(filp, fapp);
977 return fasync_add_entry(fd, filp, fapp);