Symbol: sshauthopt_parse
crypto/openssh/auth-options.h
92
struct sshauthopt *sshauthopt_parse(const char *s, const char **errstr);
crypto/openssh/auth2-pubkeyfile.c
204
if ((opts = sshauthopt_parse(line_opts, &reason)) == NULL) {
crypto/openssh/auth2-pubkeyfile.c
305
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
141
opts = sshauthopt_parse(keywords, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
159
opts = sshauthopt_parse("", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
165
opts = sshauthopt_parse(" ", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
171
opts = sshauthopt_parse("restrict", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
186
opts = sshauthopt_parse("tunnel=\"1\"", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
193
opts = sshauthopt_parse("tunnel=\"any\"", &errstr);
crypto/openssh/regress/unittests/authopt/tests.c
205
opts = sshauthopt_parse(keyword, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
209
opts = sshauthopt_parse("restrict,"keyword, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
236
opts = sshauthopt_parse(keyword "=" #val, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
241
opts = sshauthopt_parse( \
crypto/openssh/regress/unittests/authopt/tests.c
261
opts = sshauthopt_parse(keywords, &errstr); \
crypto/openssh/regress/unittests/authopt/tests.c
266
opts = sshauthopt_parse( \
crypto/openssh/regress/unittests/authopt/tests.c
393
key_opts = sshauthopt_parse(keywords, &errstr); \