Searched defs:pMechanismList (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaSlotToken.c241 meta_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, argument
253 rv = meta_mechManager_get_mechs(pMechanismList, pulCount);
255 if ((rv == CKR_BUFFER_TOO_SMALL) && (pMechanismList == NULL)) {
257 * if pMechanismList is not provided, just need to
H A Dpkcs11SlotToken.c572 * both pulCount and pMechanismList. Only when the fastpath with
582 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, argument
602 pMechanismList, pulCount));
605 return (meta_GetMechanismList(METASLOT_SLOTID, pMechanismList,
691 * Only set pMechanismList if enough memory
696 if (pMechanismList && (*pulCount > mech_count)) {
697 pMechanismList[mech_count] = pmech_list[i];
703 * Catch the case where pMechanismList was not set to NULL,
704 * yet the buffer was not large enough. If pMechanismList is
708 if ((*pulCount < mech_count) && (pMechanismList !
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSlotToken.c382 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, argument
397 if (pMechanismList == NULL) {
412 pMechanismList[i] = soft_mechanisms[i];
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelSlotToken.c223 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, argument
245 if (pMechanismList != NULL) {
343 if (pMechanismList != NULL && rv == CKR_OK &&
345 pMechanismList[count] = type;
352 if (pMechanismList != NULL && (count > specified_count))
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dapi_interface.c1395 CK_MECHANISM_TYPE_PTR pMechanismList,
1411 pMechanismList, pulCount);
1416 if (pMechanismList) {
1420 i, pMechanismList[i]);
1394 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, CK_ULONG_PTR pulCount) argument

Completed in 67 milliseconds