Searched defs:repositories (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/passwdutil/
H A D__check_history.c40 * rep = repositories to check.
53 int repositories; local
57 repositories = get_ns(rep, PWU_READ);
59 if (repositories == 0)
62 if (repositories == REP_ERANGE)
68 /* Loop over repositories until the user is found */
70 if (repositories & i)
H A D__get_authtoken_attr.c43 int repositories; local
47 repositories = get_ns(rep, PWU_READ);
49 if (repositories == 0)
52 if (repositories == REP_ERANGE) {
54 repositories = REP_NSS;
60 /* Loop over repositories until the user is found */
62 if (repositories & i)
H A D__user_to_authenticate.c35 int repositories; local
42 * find the repositories for WRITE operation.
44 repositories = get_ns(rep, PWU_WRITE);
46 if (repositories == 0)
49 if (repositories == REP_ERANGE || repositories == REP_NSS)
54 /* Loop over repositories until we find the user */
56 if (repositories & i) {
H A D__set_authtoken_attr.c42 int repositories; local
59 repositories = get_ns(rep, PWU_WRITE);
61 if (repositories == 0)
70 if (repositories == REP_ERANGE || repositories == REP_NSS)
74 * Loop over selected repositories to update
75 * We should update the remote repositories first, FILES last.
78 if (repositories & i) {
120 * PWU_NOT_FOUND : none of the repositories contained the user
H A Dnss_attr.c91 int repositories = REP_ERANGE; /* changed if ATTR_REP_NAME is set */ local
147 repositories = get_ns(rep, PWU_READ);
183 if (repositories != REP_ERANGE) {
191 else if (repositories & REP_COMPAT_LDAP)
193 else if (repositories & REP_COMPAT_NIS)
/illumos-gate/usr/src/common/net/wanboot/
H A Dbootinfo.c357 * repositories:
364 * These repositories are interrogated in the order listed above; the first
376 int repositories; local
388 * Determine which repositories might be accessed; a NULL pointer
392 repositories = *repositoryp;
395 repositories = BI_R_ALL;
400 * requested repositories.
405 repositories &= bip->bi_repository;
406 if (repositories == 0) {
422 * To retrieve a value, try the various repositories i
[all...]

Completed in 115 milliseconds