Lines Matching refs:next
48 * element of sequence. @op->stop() shuts it down. @op->next()
49 * returns the next element of sequence. @op->show() prints element
50 * into the buffer. In case of error ->start() and ->next() return
120 p = m->op->next(m, p, &m->index);
236 p = m->op->next(m, p, &m->index);
262 p = m->op->next(m, p, &m->index);
264 pr_info_ratelimited("buggy .next function %ps did not update position index\n",
265 m->op->next);
268 if (!p || IS_ERR(p)) // no next record for us
569 op->next = single_next;
916 lh = ((struct list_head *)v)->next;
958 * seq_hlist_next - move to the next position of the hlist
963 * Called at seq_file->op->next().
974 return node->next;
1024 * seq_hlist_next_rcu - move to the next position of the hlist protected by RCU
1029 * Called at seq_file->op->next().
1045 return rcu_dereference(node->next);
1073 * seq_hlist_next_percpu - move to the next position of the percpu hlist array
1079 * Called at seq_file->op->next().
1089 if (node->next)
1090 return node->next;