Home
last modified time | relevance | path

Searched refs:unescape (Results 1 – 3 of 3) sorted by relevance

/linux-5.19.10/tools/perf/util/
Ddemangle-rust.c51 static bool unescape(const char **in, char **out, const char *seq, char value);
198 if (!(unescape(&in, &out, "$C$", ',') in rust_demangle_sym()
199 || unescape(&in, &out, "$SP$", '@') in rust_demangle_sym()
200 || unescape(&in, &out, "$BP$", '*') in rust_demangle_sym()
201 || unescape(&in, &out, "$RF$", '&') in rust_demangle_sym()
202 || unescape(&in, &out, "$LT$", '<') in rust_demangle_sym()
203 || unescape(&in, &out, "$GT$", '>') in rust_demangle_sym()
204 || unescape(&in, &out, "$LP$", '(') in rust_demangle_sym()
205 || unescape(&in, &out, "$RP$", ')') in rust_demangle_sym()
206 || unescape(&in, &out, "$u20$", ' ') in rust_demangle_sym()
[all …]
/linux-5.19.10/tools/scripts/
Dutilities.mak30 # $(call unescape-nl...)
34 # unescape-nl
36 # Usage: text = $(call unescape-nl,escaped-text[,escape])
40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1))
58 # shell-unescape-nl
60 # Usage: $(shell some-command | $(call shell-unescape-nl[,escape]))
62 # Use this to unescape newlines from within a shell call;
74 define shell-unescape-nl
128 "$$(echo $(call escape-nl,$(shell-sq),$(2)) | $(call shell-unescape-nl,$(2)))"
144 lookup = $(call unescape-nl,$(shell sh -c $(_l-sh)))
/linux-5.19.10/tools/spi/
Dspidev_test.c94 static int unescape(char *_dst, char *_src, size_t len) in unescape() function
326 size = unescape((char *)tx, str, size); in transfer_escaped_string()