Lines Matching refs:next
165 const char *cp = name, *next; in __xlate_proc_name() local
169 while ((next = strchr(cp, '/')) != NULL) { in __xlate_proc_name()
170 de = pde_subdir_find(de, cp, next - cp); in __xlate_proc_name()
175 cp = next + 1; in __xlate_proc_name()
310 struct proc_dir_entry *next; in proc_readdir_de() local
320 next = pde_subdir_next(de); in proc_readdir_de()
322 de = next; in proc_readdir_de()
740 struct proc_dir_entry *root = NULL, *de, *next; in remove_proc_subtree() local
766 next = pde_subdir_first(de); in remove_proc_subtree()
767 if (next) { in remove_proc_subtree()
768 if (unlikely(pde_is_permanent(next))) { in remove_proc_subtree()
771 next->parent->name, next->name); in remove_proc_subtree()
774 rb_erase(&next->subdir_node, &de->subdir); in remove_proc_subtree()
775 de = next; in remove_proc_subtree()
778 next = de->parent; in remove_proc_subtree()
780 next->nlink--; in remove_proc_subtree()
789 de = next; in remove_proc_subtree()