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

/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaSlotToken.c52 CK_ULONG_PTR pulCount)
56 if (pulCount == NULL)
60 *pulCount = 1;
64 if (*pulCount < 1) {
70 *pulCount = 1;
242 CK_ULONG_PTR pulCount)
250 if (pulCount == NULL)
253 rv = meta_mechManager_get_mechs(pMechanismList, pulCount);
51 meta_GetSlotList(CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) argument
241 meta_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, CK_ULONG_PTR pulCount) argument
H A Dpkcs11SlotToken.c52 CK_ULONG_PTR pulCount)
65 pulCount));
72 if (pulCount == NULL) {
109 if (pSlotList && (*pulCount > count)) {
118 if ((*pulCount < count) && (pSlotList != NULL)) {
124 *pulCount = count;
572 * both pulCount and pMechanismList. Only when the fastpath with
583 CK_ULONG_PTR pulCount)
602 pMechanismList, pulCount));
606 pulCount));
51 C_GetSlotList(CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) argument
582 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, CK_ULONG_PTR pulCount) argument
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSlotToken.c246 CK_ULONG_PTR pulCount)
254 if (pulCount == NULL) {
262 *pulCount = 1;
266 if ((*pulCount < 1) && (pSlotList != NULL)) {
273 *pulCount = 1;
383 CK_ULONG_PTR pulCount)
402 *pulCount = mechnum;
406 if (*pulCount < mechnum) {
407 *pulCount = mechnum;
415 *pulCount
245 C_GetSlotList(CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) argument
382 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, CK_ULONG_PTR pulCount) argument
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelSlotToken.c45 CK_ULONG_PTR pulCount)
52 if (pulCount == NULL) {
57 *pulCount = slot_count;
61 if (*pulCount < slot_count) {
62 *pulCount = slot_count;
66 *pulCount = slot_count;
224 CK_ULONG_PTR pulCount)
246 if (pulCount == NULL) {
248 } else if (*pulCount == 0) {
252 specified_count = *pulCount;
44 C_GetSlotList(CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) argument
223 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, CK_ULONG_PTR pulCount) argument
[all...]
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dpk11keys.c95 CK_ULONG pulCount; local
104 rv = C_GetSlotList(0, NULL, &pulCount);
110 pSlotList = (CK_SLOT_ID_PTR) malloc(pulCount * sizeof (CK_SLOT_ID));
116 rv = C_GetSlotList(0, pSlotList, &pulCount);
122 for (i = 0; i < pulCount; i++) {
128 if (i < pulCount) {
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dapi_interface.c1396 CK_ULONG_PTR pulCount)
1403 if (! pulCount)
1411 pMechanismList, pulCount);
1418 for (i = 0; i < *pulCount; i++) {
1523 CK_ULONG_PTR pulCount)
1531 if (pulCount == NULL)
1539 *pulCount = 0;
1547 *pulCount = count;
1552 if (*pulCount < count)
1394 C_GetMechanismList(CK_SLOT_ID slotID, CK_MECHANISM_TYPE_PTR pMechanismList, CK_ULONG_PTR pulCount) argument
1521 C_GetSlotList(CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList, CK_ULONG_PTR pulCount) argument

Completed in 95 milliseconds