static void *j_seq_next(struct seq_file *f, void *v, loff_t *pos)
{
	if (v ==SEQ_START_TOKEN)
		return seq_list_start(&j_list, 0);

	return seq_list_next(v, &j_list, pos);
}
Example #2
0
/*
 * Sequence file's next iterator
 */
static void *ki_seq_next(struct seq_file *s, void *v, loff_t *pos)
{
        if (v == SEQ_START_TOKEN) 
                return seq_list_start(&ki_injection_list, *pos - 1);
       
        return seq_list_next(v, &ki_injection_list, pos);
}
Example #3
0
static void *c_next(struct seq_file *m, void *p, loff_t *pos)
{
	return seq_list_next(p, &crypto_alg_list, pos);
}
Example #4
0
static void *probes_seq_next(struct seq_file *m, void *v, loff_t *pos)
{
	return seq_list_next(v, &probe_list, pos);
}
Example #5
0
static void *rxrpc_call_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
	return seq_list_next(v, &rxrpc_calls, pos);
}
Example #6
0
static void *rxrpc_connection_seq_next(struct seq_file *seq, void *v,
				       loff_t *pos)
{
	return seq_list_next(v, &rxrpc_connections, pos);
}
Example #7
0
static void *l_next(struct seq_file *m, void *v, loff_t *pos)
{
	return seq_list_next(v, &all_lock_classes, pos);
}
Example #8
0
static void *t_next(struct seq_file *m, void *v, loff_t *pos)
{
    return seq_list_next(v, &tty_drivers, pos);
}
static void *capi_driver_next(struct seq_file *seq, void *v, loff_t *pos)
{
	return seq_list_next(v, &capi_drivers, pos);
}
Example #10
0
static void *list_seq_next(struct seq_file *m, void *p, loff_t *pos)
{
        return seq_list_next(p, &head, pos);
}
Example #11
0
static void *x25_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)
{
	return seq_list_next(v, &x25_route_list, pos);
}
Example #12
0
static void *bc_io_next(struct seq_file *f, void *v, loff_t *ppos)
{
	return seq_list_next(v, &pb_io_list, ppos);
}
Example #13
0
static void *ilc_seq_next(struct seq_file *s, void *v, loff_t *pos)
{
	return seq_list_next(v, &ilcs_list, pos);
}