• Home
  • Raw
  • Download

Lines Matching refs:seq_file

25 static void seq_set_overflow(struct seq_file *m)  in seq_set_overflow()
53 struct seq_file *p; in seq_open()
91 static int traverse(struct seq_file *m, loff_t offset) in traverse()
155 struct seq_file *m = file->private_data; in seq_read()
312 struct seq_file *m = file->private_data; in seq_lseek()
359 struct seq_file *m = file->private_data; in seq_release()
376 void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape()
387 void seq_escape_mem_ascii(struct seq_file *m, const char *src, size_t isz) in seq_escape_mem_ascii()
398 void seq_vprintf(struct seq_file *m, const char *f, va_list args) in seq_vprintf()
413 void seq_printf(struct seq_file *m, const char *f, ...) in seq_printf()
464 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path()
492 int seq_file_path(struct seq_file *m, struct file *file, const char *esc) in seq_file_path()
501 int seq_path_root(struct seq_file *m, const struct path *path, in seq_path_root()
531 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc) in seq_dentry()
551 static void *single_start(struct seq_file *p, loff_t *pos) in single_start()
556 static void *single_next(struct seq_file *p, void *v, loff_t *pos) in single_next()
562 static void single_stop(struct seq_file *p, void *v) in single_stop()
566 int single_open(struct file *file, int (*show)(struct seq_file *, void *), in single_open() argument
579 ((struct seq_file *)file->private_data)->private = data; in single_open()
587 int single_open_size(struct file *file, int (*show)(struct seq_file *, void *), in single_open_size() argument
599 ((struct seq_file *)file->private_data)->buf = buf; in single_open_size()
600 ((struct seq_file *)file->private_data)->size = size; in single_open_size()
607 const struct seq_operations *op = ((struct seq_file *)file->private_data)->op; in single_release()
616 struct seq_file *seq = file->private_data; in seq_release_private()
629 struct seq_file *seq; in __seq_open_private()
657 void seq_putc(struct seq_file *m, char c) in seq_putc()
666 void seq_puts(struct seq_file *m, const char *s) in seq_puts()
691 void seq_put_decimal_ull_width(struct seq_file *m, const char *delimiter, in seq_put_decimal_ull_width()
723 void seq_put_decimal_ull(struct seq_file *m, const char *delimiter, in seq_put_decimal_ull()
742 void seq_put_hex_ll(struct seq_file *m, const char *delimiter, in seq_put_hex_ll()
776 void seq_put_decimal_ll(struct seq_file *m, const char *delimiter, long long num) in seq_put_decimal_ll()
823 int seq_write(struct seq_file *seq, const void *data, size_t len) in seq_write()
840 void seq_pad(struct seq_file *m, char c) in seq_pad()
857 void seq_hex_dump(struct seq_file *m, const char *prefix_str, int prefix_type, in seq_hex_dump()
1110 seq_file_cache = KMEM_CACHE(seq_file, SLAB_ACCOUNT|SLAB_PANIC); in seq_file_init()