Lines Matching defs:esc
365 * @esc: set of characters that need escaping
368 * @esc with usual octal escape.
371 void seq_escape(struct seq_file *m, const char *s, const char *esc)
377 ret = string_escape_str(s, buf, size, ESCAPE_OCTAL, esc);
422 * @esc: set of characters that need escaping
425 * @esc with usual octal escape.
429 char *mangle_path(char *s, const char *p, const char *esc)
435 } else if (!strchr(esc, c)) {
454 * @esc: set of characters to escape in the output
459 int seq_path(struct seq_file *m, const struct path *path, const char *esc)
468 char *end = mangle_path(buf, p, esc);
483 * @esc: set of characters to escape in the output
487 int seq_file_path(struct seq_file *m, struct file *file, const char *esc)
489 return seq_path(m, &file->f_path, esc);
497 const struct path *root, const char *esc)
511 char *end = mangle_path(buf, p, esc);
526 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc)
535 char *end = mangle_path(buf, p, esc);