HomeSort by: relevance | last modified time | path
    Searched defs:slot_ids (Results 1 - 4 of 4) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
test_soft_pkcs11.c 85 CK_SLOT_ID_PTR slot_ids; local
107 if ((slot_ids = calloc(1, num_slots * sizeof(*slot_ids))) == NULL)
110 ret = (*func->C_GetSlotList)(FALSE, slot_ids, &num_slots);
114 slot = slot_ids[0];
115 free(slot_ids);
test_soft_pkcs11.c 85 CK_SLOT_ID_PTR slot_ids; local
107 if ((slot_ids = calloc(1, num_slots * sizeof(*slot_ids))) == NULL)
110 ret = (*func->C_GetSlotList)(FALSE, slot_ids, &num_slots);
114 slot = slot_ids[0];
115 free(slot_ids);
ks_p11.c 926 CK_SLOT_ID_PTR slot_ids; local
930 slot_ids = malloc(p->num_slots * sizeof(*slot_ids));
931 if (slot_ids == NULL) {
937 ret = P11FUNC(p, GetSlotList, (FALSE, slot_ids, &p->num_slots));
939 free(slot_ids);
949 free(slot_ids);
957 if ((p->selected_slot != 0) && (slot_ids[i] != (p->selected_slot - 1)))
959 ret = p11_init_slot(context, p, lock, slot_ids[i], i, &p->slot[i]);
965 free(slot_ids);
    [all...]
ks_p11.c 926 CK_SLOT_ID_PTR slot_ids; local
930 slot_ids = malloc(p->num_slots * sizeof(*slot_ids));
931 if (slot_ids == NULL) {
937 ret = P11FUNC(p, GetSlotList, (FALSE, slot_ids, &p->num_slots));
939 free(slot_ids);
949 free(slot_ids);
957 if ((p->selected_slot != 0) && (slot_ids[i] != (p->selected_slot - 1)))
959 ret = p11_init_slot(context, p, lock, slot_ids[i], i, &p->slot[i]);
965 free(slot_ids);
    [all...]

Completed in 42 milliseconds