Lines Matching full:esc
367 * @esc: set of characters that need escaping
370 * given class (defined by @flags and @esc) with printable escaped sequence.
375 unsigned int flags, const char *esc) in seq_escape_mem() argument
381 ret = string_escape_mem(src, len, buf, size, flags, esc); in seq_escape_mem()
390 * @esc: set of characters that need escaping
393 * @esc with usual octal escape.
396 void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument
398 seq_escape_str(m, s, ESCAPE_OCTAL, esc); in seq_escape()
449 * @esc: set of characters that need escaping
452 * @esc with usual octal escape.
456 char *mangle_path(char *s, const char *p, const char *esc) in mangle_path() argument
462 } else if (!strchr(esc, c)) { in mangle_path()
481 * @esc: set of characters to escape in the output
486 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path() argument
495 char *end = mangle_path(buf, p, esc); in seq_path()
510 * @esc: set of characters to escape in the output
514 int seq_file_path(struct seq_file *m, struct file *file, const char *esc) in seq_file_path() argument
516 return seq_path(m, &file->f_path, esc); in seq_file_path()
524 const struct path *root, const char *esc) in seq_path_root() argument
538 char *end = mangle_path(buf, p, esc); in seq_path_root()
553 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc) in seq_dentry() argument
562 char *end = mangle_path(buf, p, esc); in seq_dentry()