Lines Matching full:esc
362 * @esc: set of characters that need escaping
365 * @esc with usual octal escape.
368 void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument
374 ret = string_escape_str(s, buf, size, ESCAPE_OCTAL, esc); in seq_escape()
419 * @esc: set of characters that need escaping
422 * @esc with usual octal escape.
426 char *mangle_path(char *s, const char *p, const char *esc) in mangle_path() argument
432 } else if (!strchr(esc, c)) { in mangle_path()
451 * @esc: set of characters to escape in the output
456 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path() argument
465 char *end = mangle_path(buf, p, esc); in seq_path()
480 * @esc: set of characters to escape in the output
484 int seq_file_path(struct seq_file *m, struct file *file, const char *esc) in seq_file_path() argument
486 return seq_path(m, &file->f_path, esc); in seq_file_path()
494 const struct path *root, const char *esc) in seq_path_root() argument
508 char *end = mangle_path(buf, p, esc); in seq_path_root()
523 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc) in seq_dentry() argument
532 char *end = mangle_path(buf, p, esc); in seq_dentry()