Searched refs:slotID (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_SESSION_INFO.java57 * CK_SLOT_ID slotID;  
72 * CK_SLOT_ID slotID;
75 public long slotID; field in class:CK_SESSION_INFO
103 public CK_SESSION_INFO(long slotID, long state, argument
105 this.slotID = slotID;
120 buffer.append("slotID: ");
121 buffer.append(String.valueOf(slotID));
H A DPKCS11.java266 * @param slotID the ID of the slot
267 * (PKCS#11 param: CK_SLOT_ID slotID)
274 public native CK_SLOT_INFO C_GetSlotInfo(long slotID) throws PKCS11Exception; argument
282 * @param slotID ID of the token's slot
283 * (PKCS#11 param: CK_SLOT_ID slotID)
290 public native CK_TOKEN_INFO C_GetTokenInfo(long slotID) throws PKCS11Exception; argument
298 * @param slotID ID of the token's slot
299 * (PKCS#11 param: CK_SLOT_ID slotID)
307 public native long[] C_GetMechanismList(long slotID) throws PKCS11Exception; argument
315 * @param slotID I
325 C_GetMechanismInfo(long slotID, long type) argument
401 C_OpenSession(long slotID, long flags, Object pApplication, CK_NOTIFY Notify) argument
1499 C_GetSlotInfo(long slotID) argument
1503 C_GetTokenInfo(long slotID) argument
1507 C_GetMechanismList(long slotID) argument
1511 C_GetMechanismInfo(long slotID, long type) argument
1515 C_OpenSession(long slotID, long flags, Object pApplication, CK_NOTIFY Notify) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dpkcs11f.h86 CK_SLOT_ID slotID, /* the ID of the slot */
97 CK_SLOT_ID slotID, /* ID of the token's slot */
108 CK_SLOT_ID slotID, /* ID of token's slot */
120 CK_SLOT_ID slotID, /* ID of the token's slot */
132 CK_SLOT_ID slotID, /* ID of the token's slot */
172 CK_SLOT_ID slotID, /* the slot's ID */
195 CK_SLOT_ID slotID /* the token's slot */
H A Dpkcs11t.h295 CK_SLOT_ID slotID; member in struct:CK_SESSION_INFO
H A Dp11_convert.c184 jSlotID = ckULongToJLong(ckpSessionInfo->slotID);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java77 final long slotID; field in class:SunPKCS11
140 long slotID = config.getSlotID();
345 if ((slotID < 0) || showInfo) {
352 if (slotID < 0) {
359 slotID = slots[slotListIndex];
362 this.slotID = slotID;
363 CK_SLOT_INFO slotInfo = p11.C_GetSlotInfo(slotID);
792 slotInfo = p11.C_GetSlotInfo(slotID);
801 System.out.println("Slot info for slot " + slotID
[all...]
H A DConfig.java120 // slotID of the slot to use
121 private int slotID = -1; field in class:Config
235 return slotID;
239 if ((slotID == -1) && (slotListIndex == -1)) {
476 if ((slotID != -1) || (slotListIndex != -1)) {
685 if (slotID >= 0) {
694 slotID = decodeNumber(slotString);
695 debug("slot: " + slotID);
702 if (slotID >= 0) {
H A DToken.java130 tokenInfo = p11.C_GetTokenInfo(provider.slotID);
235 provider.p11.C_GetSlotInfo(provider.slotID);
349 result = p11.C_GetMechanismInfo(provider.slotID,
H A DSessionManager.java207 (token.provider.slotID, openSessionFlags, null, null);

Completed in 241 milliseconds