Lines Matching refs:slots
112 CK_SLOT_ID_PTR slots;
220 slots = malloc(sizeof(*slots) * numSlots);
222 chk_rv = C_GetSlotList(FALSE, slots, &numSlots);
230 chk_rv = C_GetSlotInfo(slots[currSlot], &slotInfo);
235 printf(" Id : %lu\n", (unsigned long) slots[currSlot]);
255 chk_rv = C_GetTokenInfo(slots[currSlot], &tokenInfo);
325 chk_rv = C_OpenSession(slots[0], CKF_SERIAL_SESSION, NULL, NULL, &hSession);
327 chk_rv = C_GetTokenInfo(slots[0], &tokenInfo);
593 if (slots) {
594 free(slots);