Searched refs:ctx (Results 151 - 175 of 355) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DClientHelloRead.java132 SSLContext ctx;
137 ctx = SSLContext.getInstance("TLS");
144 ctx.init(kmf.getKeyManagers(), null, null);
146 ssf = ctx.getServerSocketFactory();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyAuthTest.java126 SSLContext ctx;
131 ctx = SSLContext.getInstance("TLS");
138 ctx.init(kmf.getKeyManagers(), null, null);
140 ssf = ctx.getServerSocketFactory();
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DDoubleExpression.java74 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
H A DFloatExpression.java74 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
H A DLongExpression.java73 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
H A DNode.java67 public Expression convert(Environment env, Context ctx, Type t, Expression e) { argument
79 if (e.fitsType(env, ctx, t)) {
/openjdk7/jdk/test/sun/misc/IoTrace/
H A DIoTraceBase.java58 public void fileWriteEnd(Object ctx, long bw) { argument
59 context = ctx;
70 public void fileReadEnd(Object ctx, long br) { argument
71 context = ctx;
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceMember.java433 public Vset check(Environment env, Context ctx, Vset vset) throws ClassNotFound { argument
443 vset = ((SourceClass)nc).checkInsideClass(env, ctx, vset);
519 ctx = new Context(ctx, this);
528 vset.addVar(ctx.declare(env, f));
534 vset.clearVar(ctx.getThisNumber());
554 vset = s.checkMethod(env, ctx, vset, thrown);
612 vset = val.checkInitializer(env, ctx, vset,
614 setValue(val.convert(env, ctx, getType(), val));
709 Context ctx
850 codeInit(Environment env, Context ctx, Assembler asm) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java226 @Override public void installDefaults(SynthContext ctx) { argument
231 super.installDefaults(ctx);
480 @Override public Insets getInsets(SynthContext ctx, Insets in) { argument
485 Values v = getValues(ctx);
497 String scaleKey = (String)ctx.getComponent().getClientProperty(
540 @Override protected Color getColorForState(SynthContext ctx, ColorType type) { argument
558 Color c = (Color) get(ctx, key);
572 @Override protected Font getFontForState(SynthContext ctx) { argument
573 Font f = (Font)get(ctx, "font");
578 String scaleKey = (String)ctx
598 getPainter(SynthContext ctx) argument
609 isOpaque(SynthContext ctx) argument
651 get(SynthContext ctx, Object key) argument
701 getBackgroundPainter(SynthContext ctx) argument
736 getForegroundPainter(SynthContext ctx) argument
771 getBorderPainter(SynthContext ctx) argument
805 getValues(SynthContext ctx) argument
854 getExtendedState(SynthContext ctx, Values v) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/ldap/
H A DldapURLContextFactory.java59 DirContext ctx = new LdapCtx("", ldapUrl.getHost(), ldapUrl.getPort(),
70 return new ResolveResult(ctx, remaining);
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DCommandSetNode.java33 void constrainComponent(Context ctx, Node node) { argument
35 node.constrain(ctx);
H A DErrorNode.java45 void constrain(Context ctx) { argument
49 super.constrain(ctx);
H A DErrorSetNode.java33 void constrainComponent(Context ctx, Node node) { argument
35 node.constrain(ctx);
H A DReplyNode.java40 void constrain(Context ctx) { argument
41 super.constrain(ctx.replyReadingSubcontext());
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DMiscTests.java84 public void runTest(Object ctx, int numReps) { argument
85 GraphicsTests.Context gctx = (GraphicsTests.Context)ctx;
H A DImageTests.java245 public void initContext(TestEnvironment env, GraphicsTests.Context ctx) { argument
246 super.initContext(env, ctx);
247 ImageTests.Context ictx = (ImageTests.Context) ctx;
513 public void runTest(Object ctx, int numReps) { argument
514 ImageTests.Context ictx = (ImageTests.Context) ctx;
564 public void runTest(Object ctx, int numReps) { argument
565 ImageTests.Context ictx = (ImageTests.Context) ctx;
622 public void runTest(Object ctx, int numReps) { argument
623 ImageTests.Context ictx = (ImageTests.Context) ctx;
675 public void initContext(TestEnvironment env, GraphicsTests.Context ctx) argument
683 runTest(Object ctx, int numReps) argument
757 initContext(TestEnvironment env, GraphicsTests.Context ctx) argument
850 runTest(Object ctx, int numReps) argument
902 initContext(TestEnvironment env, GraphicsTests.Context ctx) argument
914 runTest(Object ctx, int numReps) argument
944 initContext(TestEnvironment env, GraphicsTests.Context ctx) argument
958 runTest(Object ctx, int numReps) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DLdapLoginModule.java371 private LdapContext ctx; field in class:LdapLoginModule
767 ctx = new InitialLdapContext(ldapEnvironment, null);
779 dn = findUserDN(ctx);
788 ctx = new InitialLdapContext(ldapEnvironment, null);
797 dn = findUserDN(ctx);
802 ctx.addToEnvironment(Context.SECURITY_AUTHENTICATION, "simple");
803 ctx.addToEnvironment(Context.SECURITY_PRINCIPAL, dn);
804 ctx.addToEnvironment(Context.SECURITY_CREDENTIALS, password);
811 ctx.reconnect(null);
856 * @param ctx a
861 findUserDN(LdapContext ctx) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java96 RegistryContext(RegistryContext ctx) { argument
97 environment = (Hashtable)ctx.environment.clone();
98 registry = ctx.registry;
99 host = ctx.host;
100 port = ctx.port;
101 reference = ctx.reference;
545 private RegistryContext ctx; field in class:BindingEnumeration
549 BindingEnumeration(RegistryContext ctx, String[] names) { argument
550 // Clone ctx in case someone closes it before we're through.
551 this.ctx
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java117 HierMemDirCtx ctx = (HierMemDirCtx)bindings.get(name.getPrefix(1));
118 if(ctx == null) {
121 target = ctx.doLookup(name.getSuffix(1), false);
180 HierMemDirCtx ctx= (HierMemDirCtx) doLookup(getInternalName(name), false);
181 ctx.doBindAux(getLeafName(name), obj);
235 HierMemDirCtx ctx= (HierMemDirCtx) doLookup(getInternalName(name), false);
236 ctx.doRebindAux(getLeafName(name), obj);
272 HierMemDirCtx ctx=
274 ctx.doUnbind(getLeafName(name));
283 bindings.remove(name); // attrs will also be removed along with ctx
852 getImmediateChildren(Context ctx) argument
857 newEnumerator(Context ctx, int scope, String contextName, boolean returnSelf) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapCtxFactory.java163 DirContext ctx = null;
188 ctx = getUsingURLs(newUrls, env);
190 ((LdapCtx)ctx).setDomainName(domainName);
193 ctx = new LdapCtx(dn, host, port, env, ldapUrl.useSsl());
195 ((LdapCtx)ctx).setProviderUrl(url);
197 return ctx;
208 DirContext ctx = null;
/openjdk7/jdk/test/com/sun/jndi/ldap/LdapName/
H A DEmptyNameSearch.java58 DirContext ctx = new InitialDirContext(env);
61 ctx.search(new LdapName(Collections.EMPTY_LIST), "cn=*", null);
62 ctx.close();
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DInputImageTests.java213 public void cleanupTest(TestEnvironment env, Object ctx) { argument
214 Context iioctx = (Context)ctx;
318 public void runTest(Object ctx, int numReps) { argument
319 final Context ictx = (Context)ctx;
392 public void runTest(Object ctx, int numReps) { argument
393 final Context ictx = (Context)ctx;
450 public void runTest(Object ctx, int numReps) { argument
451 final Context ictx = (Context)ctx;
482 Context ctx = new Context(env, result, TEST_IMAGEREADER);
486 return ctx;
489 runTest(Object ctx, int numReps) argument
[all...]
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DImplementationCacheTest.java71 Context ctx = new Context();
72 JavacFileManager.preRegister(ctx);
73 checkImplementationCache(ct.analyze(), Types.instance(ctx));
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DStubWrapper.java134 public Request _create_request( Context ctx, String operation, NVList arg_list, argument
137 return object._create_request( ctx, operation, arg_list, result ) ;
140 public Request _create_request( Context ctx, String operation, NVList arg_list, argument
143 return object._create_request( ctx, operation, arg_list, result,
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DServerRequest.java197 * the method <code>ctx</code> when the IDL operation contains a
227 * the method <code>ctx</code> when the IDL operation contains a
297 * <code>ctx</code> before the method <code>arguments</code> has
298 * been called or after the method <code>ctx</code>,
306 * @exception BAD_INV_ORDER if (1) the method <code>ctx</code> is called
308 * (2) the method <code>ctx</code> is called
312 public abstract Context ctx(); method in class:ServerRequest

Completed in 163 milliseconds

1234567891011>>