Home
last modified time | relevance | path

Searched refs:phead (Results 1 – 19 of 19) sorted by relevance

/titanic_50/usr/src/lib/pkcs11/libpkcs11/common/
H A Dpkcs11Conf.c263 uentrylist_t *phead; in pkcs11_slot_mapping() local
272 phead = pplist; in pkcs11_slot_mapping()
275 while (phead != NULL) { in pkcs11_slot_mapping()
276 if (!strcasecmp(phead->puent->name, "metaslot")) { in pkcs11_slot_mapping()
289 metaslot_entry = phead->puent; in pkcs11_slot_mapping()
294 if (!strcasecmp(phead->puent->name, FIPS_KEYWORD)) { in pkcs11_slot_mapping()
304 if ((isa = strstr(phead->puent->name, PKCS11_ISA)) != NULL) { in pkcs11_slot_mapping()
306 len = strlen(phead->puent->name) - in pkcs11_slot_mapping()
320 phead->puent->name, PKCS11_ISA_DIR, isa); in pkcs11_slot_mapping()
321 } else if ((fullpath = strdup(phead->puent->name)) == 0) { in pkcs11_slot_mapping()
[all …]
/titanic_50/usr/src/cmd/cmd-crypto/kmfcfg/
H A Dlist.c179 conf_entrylist_t *phead = NULL; in show_plugin() local
199 if (get_entrylist(&phead) == KMF_OK) { in show_plugin()
200 while (phead != NULL) { in show_plugin()
201 (void) printf("%s:%s", phead->entry->keystore, in show_plugin()
202 phead->entry->modulepath); in show_plugin()
204 if (phead->entry->option == NULL) in show_plugin()
208 phead->entry->option); in show_plugin()
209 phead = phead->next; in show_plugin()
211 free_entrylist(phead); in show_plugin()
H A Dutil.c496 conf_entrylist_t *phead = NULL; in get_keystore_entry() local
503 if (get_entrylist(&phead) != KMF_OK) in get_keystore_entry()
506 ptr = phead; in get_keystore_entry()
516 free_entrylist(phead); in get_keystore_entry()
/titanic_50/usr/src/cmd/cmd-crypto/cryptoadm/
H A Dadm_kef_ioctl.c324 mechlist_t *phead; in get_dev_info() local
371 phead = pcur = NULL; in get_dev_info()
379 if (phead == NULL) { in get_dev_info()
380 phead = pcur = pmech; in get_dev_info()
389 *ppmechlist = phead; in get_dev_info()
391 free_mechlist(phead); in get_dev_info()
412 mechlist_t *phead; in get_soft_info() local
509 phead = pcur = NULL; in get_soft_info()
516 if (phead == NULL) { in get_soft_info()
517 phead = pcur = pmech; in get_soft_info()
[all …]
H A Dadm_uef.c1304 umechlist_t *phead; in uent2str() local
1339 phead = puent->policylist; in uent2str()
1340 while (phead != NULL) { in uent2str()
1341 if (strlcat(buf, phead->name, BUFSIZ) >= BUFSIZ) { in uent2str()
1346 phead = phead->next; in uent2str()
1347 if (phead != NULL) { in uent2str()
1366 phead = puent->policylist; in uent2str()
1367 while (phead != NULL) { in uent2str()
1368 if (strlcat(buf, phead->name, BUFSIZ) >= BUFSIZ) { in uent2str()
1373 phead = phead->next; in uent2str()
[all …]
H A Dadm_kef_util.c184 mechlist_t *phead = NULL; in parse_sup_dis_list() local
223 pent->suplist = phead = pmech; in parse_sup_dis_list()
231 pent->dislist = phead = pmech; in parse_sup_dis_list()
243 phead->next = pmech; in parse_sup_dis_list()
244 phead = phead->next; in parse_sup_dis_list()
255 free_mechlist(phead); in parse_sup_dis_list()
581 mechlist_t *phead; /* the current and resulting disabled list */ in enable_mechs() local
607 phead = pcur = pent->dislist; in enable_mechs()
612 phead = pcur; in enable_mechs()
618 if (phead == pcur) { in enable_mechs()
[all …]
H A Dcryptoadm.c468 mechlist_t *phead = NULL; in process_mech_operands() local
510 if (phead == NULL) { in process_mech_operands()
511 phead = pcur = pmech; in process_mech_operands()
521 free_mechlist(phead); in process_mech_operands()
523 mecharglist = phead; in process_mech_operands()
1553 entrylist_t *phead = NULL; in list_policy_for_all() local
1684 phead = ptr = pdevlist_conf; in list_policy_for_all()
1689 phead = ptr; in list_policy_for_all()
1697 if (phead == ptr) { in list_policy_for_all()
1700 phead->next = ptr->next; in list_policy_for_all()
/titanic_50/usr/src/cmd/listen/
H A Dlisten.c181 static void trycon(struct call_list *phead, int fd);
182 static void send_dis(struct call_list *phead, int fd);
183 static void doevent(struct call_list *phead, int fd);
899 struct call_list *phead; /* pending head */ in listen() local
945 phead = ((sp->fd) + Priv_call); in listen()
946 doevent(phead, (sp->fd)); in listen()
948 trycon(phead, (sp->fd)); in listen()
950 send_dis(phead, (sp->fd)); in listen()
1071 doevent(struct call_list *phead, int fd) in doevent() argument
1093 queue(phead, current); in doevent()
[all …]
/titanic_50/usr/src/lib/libkmf/libkmf/common/
H A Dgeneralop.c240 conf_entrylist_t *phead = extra_plugin_list; in FindPlugin() local
243 while (phead != NULL) { in FindPlugin()
244 if (phead->entry->kstype == kstype) in FindPlugin()
247 phead = phead->next; in FindPlugin()
250 if (phead == NULL) in FindPlugin()
261 if (strncmp(phead->entry->modulepath, "/", 1) != 0) { in FindPlugin()
263 KMF_PLUGIN_PATH, phead->entry->modulepath); in FindPlugin()
265 char *buf = phead->entry->modulepath; in FindPlugin()
284 phead->entry->modulepath); in FindPlugin()
288 ret = InitializePlugin(phead->entry->kstype, realpath, in FindPlugin()
[all …]
/titanic_50/usr/src/lib/libcryptoutil/common/
H A Dconfig_parsing.c230 umechlist_t *phead = NULL; in parse_policylist() local
340 if (phead == NULL) { in parse_policylist()
341 phead = pcur = pmech; in parse_policylist()
351 pent->policylist = phead; in parse_policylist()
354 free_umechlist(phead); in parse_policylist()
/titanic_50/usr/src/uts/i86pc/io/
H A Dimmu_dmar.c179 char *phead; in parse_scope() local
196 phead = &shead[6]; in parse_scope()
199 dev = get_uint8(phead++); in parse_scope()
200 func = get_uint8(phead++); in parse_scope()
204 dev = get_uint8(phead++); in parse_scope()
205 func = get_uint8(phead++); in parse_scope()
/titanic_50/usr/src/uts/sun4/os/
H A Dintr.c451 intr_dist_add_list(struct intr_dist **phead, void (*func)(void *), void *arg) in intr_dist_add_list() argument
464 for (iptr = *phead, pptr = phead; iptr != NULL; in intr_dist_add_list()
/titanic_50/usr/src/cmd/format/
H A Dglobal.h123 uint_t phead; /* # physical heads */ variable
H A Dmain.c413 phead = cur_dtype->dtype_phead;
H A Dctlr_scsi.c1278 flag |= (page4->heads != phead);
1279 page4->heads = phead;
H A Dmenu_command.c1726 ncyl = pcyl = nsect = psect = acyl = phead = 0; in c_label()
/titanic_50/usr/src/uts/common/os/
H A Dsunpm.c4055 struct pm_comp_pkg *phead = NULL; in pm_autoconfig() local
4090 phead = NULL; in pm_autoconfig()
4112 p = kmem_zalloc(sizeof (*phead), KM_SLEEP); in pm_autoconfig()
4113 if (phead == NULL) { in pm_autoconfig()
4114 phead = ptail = p; in pm_autoconfig()
4168 for (i = 0, p = phead; i < components; i++) { in pm_autoconfig()
4207 phead = p; /* errout depends on phead making sense */ in pm_autoconfig()
4232 for (p = phead; p; ) { in pm_autoconfig()
/titanic_50/usr/src/cmd/mdb/common/modules/nca/
H A Dnca.c1071 wsp->walk_addr = (uintptr_t)lru.phead; in nca_node_lru_walk_init()
/titanic_50/usr/src/uts/common/inet/nca/
H A Dnca.h833 node_t *phead; /* Phys LRU list head (MRU) */ member