Searched defs:pent (Results 1 - 15 of 15) sorted by relevance

/illumos-gate/usr/src/lib/krb5/kadm5/srv/
H A Dsvr_policy.c101 osa_policy_ent_rec pent; local
114 pent.name = entry->policy;
123 pent.pw_max_life = 0;
125 pent.pw_max_life = entry->pw_max_life;
127 pent.pw_min_life = 0;
133 pent.pw_min_life = entry->pw_min_life;
136 pent.pw_min_length = MIN_PW_LENGTH;
140 pent.pw_min_length = entry->pw_min_length;
143 pent.pw_min_classes = MIN_PW_CLASSES;
147 pent
[all...]
/illumos-gate/usr/src/cmd/cmd-crypto/cryptoadm/
H A Dcryptoadm.h86 entry_t *pent; member in struct:entrylist
123 extern void print_kef_policy(char *provname, entry_t *pent,
H A Dadm_kef.c128 entry_t *pent = NULL; local
145 pent = getent_kef(provname, phardlist, psoftlist);
161 print_kef_policy(provname, pent, has_random, has_mechs);
162 free_entry(pent);
184 entry_t *pent = NULL; local
229 if ((pent = getent_kef(provname, phardlist, psoftlist)) != NULL) {
230 print_kef_policy(provname, pent, has_random, has_mechs);
231 free_entry(pent);
271 entry_t *pent = NULL; local
301 if ((pent
393 entry_t *pent = NULL; local
531 entry_t *pent = NULL; local
701 entry_t *pent = NULL; local
959 entry_t *pent = NULL; local
1088 entry_t *pent = ptr->pent; local
1217 entry_t *pent = NULL; local
[all...]
H A Dadm_kef_ioctl.c48 * provider pointed by pent. Return NULL if out of memory.
51 setup_soft_conf(entry_t *pent) argument
59 if (pent == NULL) {
63 sup_count = pent->sup_count;
76 (void) strlcpy(pload_soft_conf->sc_name, pent->name, MAXNAMELEN);
80 plist = pent->suplist;
93 * provider pointed by pent. Return NULL if out of memory.
96 setup_soft_dis(entry_t *pent) argument
104 if (pent == NULL) {
108 dis_count = pent
141 setup_dev_dis(entry_t *pent) argument
196 setup_unload_soft(entry_t *pent) argument
415 entry_t *pent = NULL; local
[all...]
H A Dadm_kef_util.c40 static int build_entrylist(entry_t *pent, entrylist_t **pplist);
45 static int parse_sup_dis_list(const char *buf, entry_t *pent);
106 entry_t *pent = NULL; local
112 pent = calloc(1, sizeof (entry_t));
113 if (pent == NULL) {
118 (void) strlcpy(pent->name, provname, MAXNAMELEN);
119 pent->suplist = NULL;
120 pent->sup_count = 0;
121 pent->dislist = NULL;
122 pent
181 parse_sup_dis_list(const char *buf, entry_t *pent) argument
274 entry_t *pent = NULL; local
340 build_entrylist(entry_t *pent, entrylist_t **pplist) argument
405 free_entry(entry_t *pent) argument
459 ent2str(entry_t *pent) argument
580 entry_t *pent; local
705 entry_t *pent = NULL; local
884 entry_t *pent = NULL; local
947 update_kcfconf(entry_t *pent, int update_mode) argument
1162 entry_t *pent; local
1272 print_kef_policy(char *provname, entry_t *pent, boolean_t has_random, boolean_t has_mechs) argument
[all...]
H A Dcryptoadm.c1102 entry_t *pent = NULL; local
1155 if ((pent = getent_kef(provname, NULL, NULL)) == NULL) {
1156 if ((pent = create_entry(provname)) == NULL) {
1164 if (!pent->load) { /* unloaded already */
1171 pent->load = B_FALSE;
1172 rc = update_kcfconf(pent, MODIFY_MODE);
1180 free_entry(pent);
1252 entry_t *pent = NULL; local
1313 pent = getent_kef(psoftname,
1316 (pent
1379 entry_t *pent = NULL; local
[all...]
/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Ddirectory_provider_builtin.c49 directory_entry_rpc *pent, const wksids_table_t *wksid,
148 directory_entry_rpc *pent,
162 pent->status = DIRECTORY_FOUND;
163 pent->directory_entry_rpc_u.attrs.attrs_val = llvals;
164 pent->directory_entry_rpc_u.attrs.attrs_len = nattrs;
147 directory_provider_builtin_populate( directory_entry_rpc *pent, const wksids_table_t *wksid, idmap_utf8str_list *attrs) argument
H A Ddirectory_provider_nsswitch.c50 directory_entry_rpc *pent, struct passwd *pwd, struct group *grp,
249 directory_entry_rpc *pent,
274 pent->directory_entry_rpc_u.attrs.attrs_val = llvals;
275 pent->directory_entry_rpc_u.attrs.attrs_len = nattrs;
276 pent->status = DIRECTORY_FOUND;
248 directory_provider_nsswitch_populate( directory_entry_rpc *pent, struct passwd *pwd, struct group *grp, idmap_utf8str_list *attrs) argument
H A Ddirectory_provider_ad.c66 directory_entry_rpc *pent, const char * const * attrs, int nattrs,
283 directory_entry_rpc *pent,
304 cbinfo.entry = pent;
381 directory_entry_rpc *pent = cbinfo->entry; local
403 if (pent->status != DIRECTORY_NOT_FOUND) {
413 pent->directory_entry_rpc_u.attrs.attrs_val = llvals;
414 pent->directory_entry_rpc_u.attrs.attrs_len = nattrs;
415 pent->status = DIRECTORY_FOUND;
462 directory_entry_set_error(pent, de);
282 directory_provider_ad_lookup( directory_entry_rpc *pent, const char * const * attrs, int nattrs, const char *domain, const char *filter) argument
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dconfig_parsing.c50 uentry_t *pent; local
73 if ((rc = uef_interpret(buffer, &pent)) != SUCCESS) {
77 /* append pent into ppliblist */
82 free_uentry(pent);
86 pentlist->puent = pent;
161 uentry_t *pent; local
173 pent = calloc(sizeof (uentry_t), 1);
174 if (pent == NULL) {
179 (void) strlcpy(pent->name, token1, sizeof (pent
228 parse_policylist(char *buf, uentry_t *pent) argument
397 free_uentry(uentry_t *pent) argument
[all...]
/illumos-gate/usr/src/cmd/power/
H A Dparse.c126 struct passwd *pent; local
134 } else if ((pent = getpwuid(ruid)) != NULL) {
135 user = pent->pw_name;
/illumos-gate/usr/src/cmd/svr4pkg/pkgremove/
H A Dspecial.c428 * pent a contents entry
434 pathcmp(const char *pc, const struct cfent *pent) argument
437 if ((pent->ftype == 's' || pent->ftype == 'l') &&
438 pent->ainfo.local) {
442 i = strcmp(pc, pent->path);
453 i = strcmp(pc, pent->path);
458 i = strcmp(q, pent->ainfo.local);
465 i = strcmp(pc, pent->path);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/nwamadm/
H A Dnwamadm.c662 profile_entry_t *pent = ofarg->ofmt_cbarg; local
667 if (pent->p_type == NWAM_OBJECT_TYPE_NCU) {
670 pent->p_ncu_class, &class) != NWAM_SUCCESS)
673 nwam_object_type_to_string(pent->p_type), class);
676 nwam_object_type_to_string(pent->p_type), bufsize);
680 (void) strlcpy(buf, pent->p_name, bufsize);
683 (void) strlcpy(buf, nwam_state_to_string(pent->p_state),
688 nwam_aux_state_to_string(pent->p_aux_state), bufsize);
739 profile_entry_t *pent)
744 pent
738 add_to_profile_entry(nwam_object_type_t type, void *handle, profile_entry_t *pent) argument
790 profile_entry_t pent; local
805 profile_entry_t pent; local
827 profile_entry_t pent; local
842 profile_entry_t pent; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dipsecconf.c4213 struct protoent *pent; local
4650 pent = getprotobyname(act_props->pattern[i]);
4651 if (pent == NULL) {
4661 cptr->ips_ulp_prot = pent->p_proto;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipqosconf/
H A Dipqosconf.c2998 struct protoent *pent; local
3000 pent = getprotobynumber(proto);
3001 if (pent != NULL) {
3002 (void) fprintf(fp, "%s\n", pent->p_name);
4633 struct protoent *pent; local
4641 pent = getprotobyname(proto_str);
4642 if (pent) {
4643 *proto = pent->p_proto;

Completed in 152 milliseconds