• Home
  • Raw
  • Download

Lines Matching +full:10 +full:v

17  *	2002/10/06	Arnaldo Carvalho de Melo  seq_file support
37 static void *x25_seq_route_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_route_next() argument
39 return seq_list_next(v, &x25_route_list, pos); in x25_seq_route_next()
42 static void x25_seq_route_stop(struct seq_file *seq, void *v) in x25_seq_route_stop() argument
48 static int x25_seq_route_show(struct seq_file *seq, void *v) in x25_seq_route_show() argument
50 struct x25_route *rt = list_entry(v, struct x25_route, node); in x25_seq_route_show()
52 if (v == &x25_route_list) { in x25_seq_route_show()
57 rt = v; in x25_seq_route_show()
72 static void *x25_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_socket_next() argument
74 return seq_hlist_next(v, &x25_list, pos); in x25_seq_socket_next()
77 static void x25_seq_socket_stop(struct seq_file *seq, void *v) in x25_seq_socket_stop() argument
83 static int x25_seq_socket_show(struct seq_file *seq, void *v) in x25_seq_socket_show() argument
90 if (v == SEQ_START_TOKEN) { in x25_seq_socket_show()
96 s = sk_entry(v); in x25_seq_socket_show()
104 seq_printf(seq, "%-10s %-10s %-5s %3.3X %d %d %d %d %3lu %3lu " in x25_seq_socket_show()
125 static void *x25_seq_forward_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_forward_next() argument
127 return seq_list_next(v, &x25_forward_list, pos); in x25_seq_forward_next()
130 static void x25_seq_forward_stop(struct seq_file *seq, void *v) in x25_seq_forward_stop() argument
136 static int x25_seq_forward_show(struct seq_file *seq, void *v) in x25_seq_forward_show() argument
138 struct x25_forward *f = list_entry(v, struct x25_forward, node); in x25_seq_forward_show()
140 if (v == &x25_forward_list) { in x25_seq_forward_show()
145 f = v; in x25_seq_forward_show()
147 seq_printf(seq, "%d %-10s %-10s\n", in x25_seq_forward_show()