Lines Matching refs:seq_buf
19 struct seq_buf { struct
26 static inline void seq_buf_clear(struct seq_buf *s) in seq_buf_clear() argument
33 seq_buf_init(struct seq_buf *s, char *buf, unsigned int size) in seq_buf_init()
45 seq_buf_has_overflowed(struct seq_buf *s) in seq_buf_has_overflowed()
51 seq_buf_set_overflow(struct seq_buf *s) in seq_buf_set_overflow()
60 seq_buf_buffer_left(struct seq_buf *s) in seq_buf_buffer_left()
69 static inline unsigned int seq_buf_used(struct seq_buf *s) in seq_buf_used()
82 static inline size_t seq_buf_get_buf(struct seq_buf *s, char **bufp) in seq_buf_get_buf()
104 static inline void seq_buf_commit(struct seq_buf *s, int num) in seq_buf_commit()
116 int seq_buf_printf(struct seq_buf *s, const char *fmt, ...);
118 int seq_buf_vprintf(struct seq_buf *s, const char *fmt, va_list args);
119 extern int seq_buf_print_seq(struct seq_file *m, struct seq_buf *s);
120 extern int seq_buf_to_user(struct seq_buf *s, char __user *ubuf,
122 extern int seq_buf_puts(struct seq_buf *s, const char *str);
123 extern int seq_buf_putc(struct seq_buf *s, unsigned char c);
124 extern int seq_buf_putmem(struct seq_buf *s, const void *mem, unsigned int len);
125 extern int seq_buf_putmem_hex(struct seq_buf *s, const void *mem,
127 extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc);
128 extern int seq_buf_hex_dump(struct seq_buf *s, const char *prefix_str,
134 seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary);