• Home
  • Raw
  • Download

Lines Matching refs:v

32 static void *x25_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)  in x25_seq_route_next()  argument
34 return seq_list_next(v, &x25_route_list, pos); in x25_seq_route_next()
37 static void x25_seq_route_stop(struct seq_file *seq, void *v) in x25_seq_route_stop() argument
43 static int x25_seq_route_show(struct seq_file *seq, void *v) in x25_seq_route_show() argument
45 struct x25_route *rt = list_entry(v, struct x25_route, node); in x25_seq_route_show()
47 if (v == &x25_route_list) { in x25_seq_route_show()
52 rt = v; in x25_seq_route_show()
67 static void *x25_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_socket_next() argument
69 return seq_hlist_next(v, &x25_list, pos); in x25_seq_socket_next()
72 static void x25_seq_socket_stop(struct seq_file *seq, void *v) in x25_seq_socket_stop() argument
78 static int x25_seq_socket_show(struct seq_file *seq, void *v) in x25_seq_socket_show() argument
85 if (v == SEQ_START_TOKEN) { in x25_seq_socket_show()
91 s = sk_entry(v); in x25_seq_socket_show()
120 static void *x25_seq_forward_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_forward_next() argument
122 return seq_list_next(v, &x25_forward_list, pos); in x25_seq_forward_next()
125 static void x25_seq_forward_stop(struct seq_file *seq, void *v) in x25_seq_forward_stop() argument
131 static int x25_seq_forward_show(struct seq_file *seq, void *v) in x25_seq_forward_show() argument
133 struct x25_forward *f = list_entry(v, struct x25_forward, node); in x25_seq_forward_show()
135 if (v == &x25_forward_list) { in x25_seq_forward_show()
140 f = v; in x25_seq_forward_show()