Searched refs:GSSLibStub (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/make/sun/security/jgss/wrapper/
H A DFILES_c.gmk29 GSSLibStub.c
H A DMakefile47 sun/security/jgss/wrapper/GSSLibStub.java
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DGSSLibStub.java43 class GSSLibStub { class
96 private static Hashtable<Oid, GSSLibStub>
97 table = new Hashtable<Oid, GSSLibStub>(5);
99 static GSSLibStub getInstance(Oid mech) throws GSSException {
100 GSSLibStub s = table.get(mech);
102 s = new GSSLibStub(mech);
107 private GSSLibStub(Oid mech) throws GSSException { method in class:GSSLibStub
108 SunNativeProvider.debug("Created GSSLibStub for mech " + mech);
114 if (!(obj instanceof GSSLibStub)) {
117 return (mech.equals(((GSSLibStub) ob
[all...]
H A DGSSCredElement.java43 private GSSLibStub cStub;
66 cStub = GSSLibStub.getInstance(mech);
72 GSSLibStub stub) throws GSSException {
H A DGSSNameElement.java53 private GSSLibStub cStub;
57 private static Oid getNativeNameType(Oid nameType, GSSLibStub stub) {
67 stub = GSSLibStub.getInstance
97 GSSNameElement(long pNativeName, GSSLibStub stub) throws GSSException {
108 GSSNameElement(byte[] nameBytes, Oid nameType, GSSLibStub stub)
172 GSSLibStub stub = cStub;
174 stub = GSSLibStub.getInstance(GSSUtil.GSS_KRB5_MECH_OID);
H A DSunNativeProvider.java101 if (GSSLibStub.init(libName)) {
103 Oid[] mechs = GSSLibStub.indicateMechs();
H A DNativeGSSFactory.java45 GSSLibStub cStub = null;
78 cStub = GSSLibStub.getInstance(mech);
H A DNativeGSSContext.java75 private final GSSLibStub cStub;
123 GSSLibStub.getInstance(GSSUtil.GSS_KRB5_MECH_OID));
190 int time, GSSLibStub stub) throws GSSException {
211 NativeGSSContext(GSSCredElement myCred, GSSLibStub stub)
226 // will be set in GSSLibStub.acceptContext(...)
230 NativeGSSContext(long pCtxt, GSSLibStub stub) throws GSSException {
238 throw new RuntimeException("Bug w/ GSSLibStub.inquireContext()");

Completed in 68 milliseconds