Lines Matching refs:seq_file

16 struct seq_file {  struct
32 void * (*start) (struct seq_file *m, loff_t *pos); argument
33 void (*stop) (struct seq_file *m, void *v);
34 void * (*next) (struct seq_file *m, void *v, loff_t *pos);
35 int (*show) (struct seq_file *m, void *v);
50 static inline bool seq_has_overflowed(struct seq_file *m) in seq_has_overflowed()
63 static inline size_t seq_get_buf(struct seq_file *m, char **bufp) in seq_get_buf()
83 static inline void seq_commit(struct seq_file *m, int num) in seq_commit()
101 static inline void seq_setwidth(struct seq_file *m, size_t size) in seq_setwidth()
105 void seq_pad(struct seq_file *m, char c);
113 int seq_write(struct seq_file *seq, const void *data, size_t len);
116 void seq_vprintf(struct seq_file *m, const char *fmt, va_list args);
118 void seq_printf(struct seq_file *m, const char *fmt, ...);
119 void seq_putc(struct seq_file *m, char c);
120 void seq_puts(struct seq_file *m, const char *s);
121 void seq_put_decimal_ull_width(struct seq_file *m, const char *delimiter,
123 void seq_put_decimal_ull(struct seq_file *m, const char *delimiter,
125 void seq_put_decimal_ll(struct seq_file *m, const char *delimiter, long long num);
126 void seq_put_hex_ll(struct seq_file *m, const char *delimiter,
129 void seq_escape(struct seq_file *m, const char *s, const char *esc);
130 void seq_escape_mem_ascii(struct seq_file *m, const char *src, size_t isz);
132 void seq_hex_dump(struct seq_file *m, const char *prefix_str, int prefix_type,
136 int seq_path(struct seq_file *, const struct path *, const char *);
137 int seq_file_path(struct seq_file *, struct file *, const char *);
138 int seq_dentry(struct seq_file *, struct dentry *, const char *);
139 int seq_path_root(struct seq_file *m, const struct path *path,
142 int single_open(struct file *, int (*)(struct seq_file *, void *), void *);
143 int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t);
154 struct seq_file *seq_f = file->private_data; \
195 static inline struct user_namespace *seq_user_ns(struct seq_file *seq) in seq_user_ns()
211 static inline void seq_show_option(struct seq_file *m, const char *name, in seq_show_option()