Symbol: auth_setitem
include/bsd_auth.h
60
int auth_setitem(auth_session_t *, auth_item_t, char *);
lib/libc/gen/auth_subr.c
209
auth_setitem(as, AUTHV_ALL, NULL);
lib/libc/gen/auth_subr.c
451
auth_setitem(as, AUTHV_CHALLENGE, NULL);
lib/libc/gen/auth_subr.c
452
auth_setitem(as, AUTHV_CLASS, NULL);
lib/libc/gen/auth_subr.c
453
auth_setitem(as, AUTHV_NAME, NULL);
lib/libc/gen/auth_subr.c
454
auth_setitem(as, AUTHV_SERVICE, NULL);
lib/libc/gen/auth_subr.c
455
auth_setitem(as, AUTHV_STYLE, NULL);
lib/libc/gen/auth_subr.c
456
auth_setitem(as, AUTHV_INTERACTIVE, NULL);
lib/libc/gen/auth_subr.c
524
DEF_WEAK(auth_setitem);
lib/libc/gen/authenticate.c
284
if (auth_setitem(as, AUTHV_NAME, name) < 0) {
lib/libc/gen/authenticate.c
370
auth_setitem(as, AUTHV_SERVICE, "response");
lib/libc/gen/authenticate.c
436
if (auth_setitem(as, AUTHV_STYLE, style) < 0 ||
lib/libc/gen/authenticate.c
437
auth_setitem(as, AUTHV_NAME, name) < 0 ||
lib/libc/gen/authenticate.c
438
auth_setitem(as, AUTHV_CLASS, lc->lc_class) < 0) {
lib/libc/gen/authenticate.c
525
if (style != NULL && auth_setitem(as, AUTHV_STYLE, style) < 0)
lib/libc/gen/authenticate.c
528
if (name != NULL && auth_setitem(as, AUTHV_NAME, name) < 0)
lib/libc/hidden/bsd_auth.h
48
PROTO_NORMAL(auth_setitem);
libexec/ftpd/ftpd.c
756
auth_setitem(as, AUTHV_STYLE, style) < 0 ||
libexec/ftpd/ftpd.c
757
auth_setitem(as, AUTHV_NAME, name) < 0 ||
libexec/ftpd/ftpd.c
758
auth_setitem(as, AUTHV_CLASS, class) < 0 ||
usr.bin/login/login.c
378
auth_setitem(as, AUTHV_INTERACTIVE, "True");
usr.bin/login/login.c
403
if (auth_setitem(as, AUTHV_NAME, username) < 0 ||
usr.bin/su/su.c
203
if (auth_setitem(as, AUTHV_INTERACTIVE, "True") != 0 ||
usr.bin/su/su.c
204
auth_setitem(as, AUTHV_NAME, user) != 0)
usr.sbin/ldapd/ldapd.c
331
auth_setitem(as, AUTHV_SERVICE, "response");