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

/bind-9.11.3/lib/isc/
H A Dpk11.c585 CK_ULONG slotCount; local
590 slotCount = 0;
591 PK11_FATALCHECK(pkcs_C_GetSlotList, (CK_FALSE, NULL_PTR, &slotCount));
592 PK11_TRACE1("slotCount=%lu\n", slotCount);
594 if (slotCount == 0)
596 slotList = pk11_mem_get(sizeof(CK_SLOT_ID_PTR) * slotCount);
598 PK11_FATALCHECK(pkcs_C_GetSlotList, (CK_FALSE, slotList, &slotCount));
600 for (i = 0; i < slotCount; i++) {
921 pk11_mem_put(slotList, sizeof(CK_SLOT_ID_PTR) * slotCount);
[all...]

Completed in 21 milliseconds