Lines Matching refs:seq_file
73 struct seq_file { struct
82 void * (*start) (struct seq_file *m, off_t *pos); argument
83 void (*stop) (struct seq_file *m, void *v);
84 void * (*next) (struct seq_file *m, void *v, off_t *pos);
85 int (*show) (struct seq_file *m, void *v);
89 int seq_write(struct seq_file *seq, const void *data, size_t len);
90 void seq_putc(struct seq_file *m, char c);
91 void seq_puts(struct seq_file *m, const char *str);
92 bool seq_has_overflowed(struct seq_file *m);
101 int single_open(struct linux_file *, int (*)(struct seq_file *, void *), void *);
102 int single_open_size(struct linux_file *, int (*)(struct seq_file *, void *), void *, size_t);
105 void lkpi_seq_vprintf(struct seq_file *m, const char *fmt, va_list args);
106 void lkpi_seq_printf(struct seq_file *m, const char *fmt, ...);
114 seq_hex_dump(struct seq_file *m, const char *prefix_str, int prefix_type, in seq_hex_dump()