Symbol: sshauthopt_parse
regress/usr.bin/ssh/unittests/authopt/tests.c
139
opts = sshauthopt_parse(keywords, &errstr); \
regress/usr.bin/ssh/unittests/authopt/tests.c
157
opts = sshauthopt_parse("", &errstr);
regress/usr.bin/ssh/unittests/authopt/tests.c
163
opts = sshauthopt_parse(" ", &errstr);
regress/usr.bin/ssh/unittests/authopt/tests.c
169
opts = sshauthopt_parse("restrict", &errstr);
regress/usr.bin/ssh/unittests/authopt/tests.c
184
opts = sshauthopt_parse("tunnel=\"1\"", &errstr);
regress/usr.bin/ssh/unittests/authopt/tests.c
191
opts = sshauthopt_parse("tunnel=\"any\"", &errstr);
regress/usr.bin/ssh/unittests/authopt/tests.c
203
opts = sshauthopt_parse(keyword, &errstr); \
regress/usr.bin/ssh/unittests/authopt/tests.c
207
opts = sshauthopt_parse("restrict,"keyword, &errstr); \
regress/usr.bin/ssh/unittests/authopt/tests.c
234
opts = sshauthopt_parse(keyword "=" #val, &errstr); \
regress/usr.bin/ssh/unittests/authopt/tests.c
239
opts = sshauthopt_parse( \
regress/usr.bin/ssh/unittests/authopt/tests.c
259
opts = sshauthopt_parse(keywords, &errstr); \
regress/usr.bin/ssh/unittests/authopt/tests.c
264
opts = sshauthopt_parse( \
regress/usr.bin/ssh/unittests/authopt/tests.c
391
key_opts = sshauthopt_parse(keywords, &errstr); \
usr.bin/ssh/auth-options.h
92
struct sshauthopt *sshauthopt_parse(const char *s, const char **errstr);
usr.bin/ssh/auth2-pubkeyfile.c
203
if ((opts = sshauthopt_parse(line_opts, &reason)) == NULL) {
usr.bin/ssh/auth2-pubkeyfile.c
304
if ((keyopts = sshauthopt_parse(key_options, &reason)) == NULL) {