Lines Matching refs:next
166 const char *cp = name, *next; in __xlate_proc_name() local
170 while ((next = strchr(cp, '/')) != NULL) { in __xlate_proc_name()
171 de = pde_subdir_find(de, cp, next - cp); in __xlate_proc_name()
176 cp = next + 1; in __xlate_proc_name()
307 struct proc_dir_entry *next; in proc_readdir_de() local
317 next = pde_subdir_next(de); in proc_readdir_de()
319 de = next; in proc_readdir_de()
727 struct proc_dir_entry *root = NULL, *de, *next; in remove_proc_subtree() local
753 next = pde_subdir_first(de); in remove_proc_subtree()
754 if (next) { in remove_proc_subtree()
755 if (unlikely(pde_is_permanent(next))) { in remove_proc_subtree()
758 next->parent->name, next->name); in remove_proc_subtree()
761 rb_erase(&next->subdir_node, &de->subdir); in remove_proc_subtree()
762 de = next; in remove_proc_subtree()
765 next = de->parent; in remove_proc_subtree()
767 next->nlink--; in remove_proc_subtree()
776 de = next; in remove_proc_subtree()