Symbol: sshauthopt_parse
crypto/openssh/auth-options.h
92
struct sshauthopt *sshauthopt_parse(const char *s, const char **errstr);
crypto/openssh/auth2-pubkeyfile.c
200
if ((opts = sshauthopt_parse(line_opts, &reason)) == NULL) {
crypto/openssh/auth2-pubkeyfile.c
301
if ((keyopts = sshauthopt_parse(key_options, &reason)) == NULL) {
crypto/openssh/regress/misc/fuzz-harness/authopt_fuzz.cc
20
if ((opts = sshauthopt_parse(cp, NULL)) == NULL)
crypto/openssh/regress/unittests/authopt/tests.c
143
opts = sshauthopt_parse(keywords, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
160
opts = sshauthopt_parse("", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
166
opts = sshauthopt_parse(" ", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
172
opts = sshauthopt_parse("restrict", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
187
opts = sshauthopt_parse("tunnel=\"1\"", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
194
opts = sshauthopt_parse("tunnel=\"any\"", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
206
opts = sshauthopt_parse(keyword, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
210
opts = sshauthopt_parse("restrict,"keyword, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
237
opts = sshauthopt_parse(keyword "=" #val, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
242
opts = sshauthopt_parse( \
crypto/openssh/regress/unittests/authopt/tests.c
262
opts = sshauthopt_parse(keywords, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
267
opts = sshauthopt_parse( \
crypto/openssh/regress/unittests/authopt/tests.c
394
key_opts = sshauthopt_parse(keywords, &errstr); \