Home
last modified time | relevance | path

Searched refs:escaped_name (Results 1 – 2 of 2) sorted by relevance

/openbsd/usr.sbin/mtree/
H A Dcreate.c133 char *escaped_name; in statf() local
137 escaped_name = malloc(esc_len); in statf()
138 if (escaped_name == NULL) in statf()
140 strnvis(escaped_name, p->fts_name, esc_len, in statf()
144 offset = printf("%*s%s", indent, "", escaped_name); in statf()
146 offset = printf("%*s %s", indent, "", escaped_name); in statf()
148 free(escaped_name); in statf()
241 escaped_name = malloc(esc_len); in statf()
242 if (escaped_name == NULL) in statf()
245 output(indent, &offset, "link=%s", escaped_name); in statf()
[all …]
/openbsd/gnu/llvm/llvm/tools/opt-viewer/
H A Dopt-viewer.py200 escaped_name = html.escape(r.DemangledFunctionName)