Lines Matching refs:seq_file
54 struct seq_file { struct
63 void * (*start) (struct seq_file *m, off_t *pos); argument
64 void (*stop) (struct seq_file *m, void *v);
65 void * (*next) (struct seq_file *m, void *v, off_t *pos);
66 int (*show) (struct seq_file *m, void *v);
70 int seq_write(struct seq_file *seq, const void *data, size_t len);
71 void seq_putc(struct seq_file *m, char c);
72 void seq_puts(struct seq_file *m, const char *str);
73 bool seq_has_overflowed(struct seq_file *m);
82 int single_open(struct linux_file *, int (*)(struct seq_file *, void *), void *);
83 int single_open_size(struct linux_file *, int (*)(struct seq_file *, void *), void *, size_t);
86 void lkpi_seq_vprintf(struct seq_file *m, const char *fmt, va_list args);
87 void lkpi_seq_printf(struct seq_file *m, const char *fmt, ...);