Lines Matching refs:next
164 const char *cp = name, *next; in __xlate_proc_name() local
172 next = strchr(cp, '/'); in __xlate_proc_name()
173 if (!next) in __xlate_proc_name()
176 de = pde_subdir_find(de, cp, next - cp); in __xlate_proc_name()
181 cp = next + 1; in __xlate_proc_name()
312 struct proc_dir_entry *next; in proc_readdir_de() local
322 next = pde_subdir_next(de); in proc_readdir_de()
324 de = next; in proc_readdir_de()
732 struct proc_dir_entry *root = NULL, *de, *next; in remove_proc_subtree() local
758 next = pde_subdir_first(de); in remove_proc_subtree()
759 if (next) { in remove_proc_subtree()
760 if (unlikely(pde_is_permanent(next))) { in remove_proc_subtree()
763 next->parent->name, next->name); in remove_proc_subtree()
766 rb_erase(&next->subdir_node, &de->subdir); in remove_proc_subtree()
767 de = next; in remove_proc_subtree()
770 next = de->parent; in remove_proc_subtree()
772 next->nlink--; in remove_proc_subtree()
781 de = next; in remove_proc_subtree()