Home
last modified time | relevance | path

Searched refs:dollar_expand (Results 1 – 5 of 5) sorted by relevance

/freebsd/crypto/openssh/regress/unittests/misc/
H A Dtest_expand.c36 char *str = dollar_expand(NULL, (x)); \ in test_expand()
55 ret = dollar_expand(&parseerr, "a${BAZ}"); in test_expand()
57 ret = dollar_expand(&parseerr, "${BAZ}b"); in test_expand()
59 ret = dollar_expand(&parseerr, "a${BAZ}b"); in test_expand()
62 ret = dollar_expand(&parseerr, "${"); in test_expand()
64 ret = dollar_expand(&parseerr, "${F"); in test_expand()
66 ret = dollar_expand(&parseerr, "${FO"); in test_expand()
69 ret = dollar_expand(&parseerr, "${}"); in test_expand()
/freebsd/crypto/openssh/
H A Dmisc.h87 char *dollar_expand(int *, const char *string, ...);
H A Dssh_namespace.h263 #define dollar_expand Fssh_dollar_expand macro
H A Dreadconf.c2345 if ((arg2 = dollar_expand(&r, arg)) == NULL || r) { in process_config_line_depth()
3174 cp = p = dollar_expand(&err, fwdspec); in parse_forward()
H A Dmisc.c1400 dollar_expand(int *parseerr, const char *string, ...) in dollar_expand() function