Searched refs:Session (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSessionManager.java38 * Session manager. There is one session manager object per PKCS#11
62 * period of time, see Session.
121 synchronized Session getObjSession() throws PKCS11Exception {
122 Session session = objSessions.poll();
134 synchronized Session getOpSession() throws PKCS11Exception {
135 Session session = opSessions.poll();
153 private Session ensureValid(Session session) {
158 synchronized Session killSession(Session sessio
[all...]
H A DSession.java44 final class Session implements Comparable<Session> { class in inherits:Comparable
65 Session(Token token, long id) { method in class:Session
73 public int compareTo(Session other) {
129 final class SessionRef extends PhantomReference<Session>
132 private static ReferenceQueue<Session> refQueue =
133 new ReferenceQueue<Session>();
138 static ReferenceQueue<Session> referenceQueue() {
158 SessionRef(Session session, long id, Token token) {
H A DToken.java136 Session s = sessionManager.getOpSession();
146 Session s = sessionManager.getOpSession();
164 boolean isLoggedIn(Session session) throws PKCS11Exception {
177 boolean isLoggedInNow(Session session) throws PKCS11Exception {
197 void ensureLoggedIn(Session session) throws PKCS11Exception, LoginException {
263 Session getObjSession() throws PKCS11Exception {
267 Session getOpSession() throws PKCS11Exception {
271 Session releaseSession(Session session) {
275 Session killSessio
[all...]
H A DP11KeyFactory.java92 Session[] session = new Session[1];
142 Session[] session) throws PKCS11Exception, InvalidKeySpecException;
145 Session[] session) throws PKCS11Exception, InvalidKeySpecException;
H A DP11Key.java92 P11Key(String type, Session session, long keyID, String algorithm,
237 Session tempSession = null;
250 private static CK_ATTRIBUTE[] getAttributes(Session session, long keyID,
283 static SecretKey secretKey(Session session, long keyID, String algorithm,
293 static SecretKey masterSecretKey(Session session, long keyID, String algorithm,
305 static PublicKey publicKey(Session session, long keyID, String algorithm,
325 static PrivateKey privateKey(Session session, long keyID, String algorithm,
379 P11PrivateKey(Session session, long keyID, String algorithm,
396 P11SecretKey(Session session, long keyID, String algorithm,
418 Session tempSessio
[all...]
H A DP11SecureRandom.java95 Session session = null;
180 Session session = null;
H A DP11TlsPrfGenerator.java124 Session session = null;
146 Session session = null;
H A DP11DHKeyFactory.java182 Session session = null;
204 Session session = null;
215 KeySpec implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session)
237 KeySpec implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session)
H A DP11DSAKeyFactory.java177 Session session = null;
200 Session session = null;
211 KeySpec implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session)
235 KeySpec implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session)
H A DP11RSAKeyFactory.java200 Session session = null;
222 Session session = null;
252 Session session = null;
263 KeySpec implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session)
283 KeySpec implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session)
H A DP11ECDHKeyAgreement.java122 Session session = null;
184 Session session = null;
H A DP11ECKeyFactory.java230 Session session = null;
251 Session session = null;
262 KeySpec implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session)
284 KeySpec implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session)
H A DP11TlsRsaPremasterSecretGenerator.java93 Session session = null;
H A DP11KeyStore.java310 Session session = null;
931 Session session = null;
1194 private X509Certificate loadCert(Session session, long oHandle)
1211 private X509Certificate[] loadChain(Session session,
1264 private SecretKey loadSkey(Session session, long oHandle)
1314 private PrivateKey loadPkey(Session session, long oHandle)
1436 Session session = null;
1510 Session session = null;
1576 Session session = null;
1605 Session sessio
[all...]
H A DP11TlsMasterSecretGenerator.java132 Session session = null;
H A DP11RSACipher.java80 private Session session;
439 Session s = null;
457 Session s = null;
H A DSecmod.java615 Session session = null;
645 TrustAttributes(Token token, Session session, long handle)
728 Session session = null;
H A DP11KeyGenerator.java251 Session session = null;
H A DP11Mac.java88 private Session session;
H A DP11TlsKeyMaterialGenerator.java147 Session session = null;
H A DP11KeyAgreement.java192 Session session = null;
307 Session session = null;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DSession.java44 class Session { class
57 public Session(VirtualMachine vm, ExecutionManager runtime, method in class:Session
H A DJDIEventSource.java49 private /*final*/ Session session;
58 JDIEventSource(Session session) {
H A DExecutionManager.java56 private Session session;
65 // Session Listeners
350 //### the 'Session' abstraction. The 'Session.attach()'
356 * it may be worth creating a new subclass of Session for
364 Session newSession = internalAttach(connector, arguments);
370 private Session internalAttach(AttachingConnector connector,
374 return new Session(vm, this, diagnostics);
385 private Session internalListen(ListeningConnector connector,
389 return new Session(v
[all...]
/openjdk7/jdk/test/java/rmi/transport/pinClientSocketFactory/
H A DPinClientSocketFactory.java65 Session getSession() throws RemoteException;
68 public interface Session extends Remote { interface in class:PinClientSocketFactory
74 public Session getSession() throws RemoteException {
75 Session impl = new SessionImpl();
82 private static class SessionImpl implements Session {
94 Session session = factoryStub.getSession();

Completed in 1363 milliseconds

12