Searched refs:Context (Results 1 - 25 of 430) sorted by relevance

1234567891011>>

/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DContext.java30 class Context { class
42 Context() { method in class:Context
47 private Context(String whereJava, String whereC) { method in class:Context
52 Context subcontext(String level) {
53 Context ctx;
55 ctx = new Context(level, level);
57 ctx = new Context(whereJava + "." + level, whereC + "_" + level);
64 private Context cloneContext() {
65 Context ctx = new Context(whereJav
[all...]
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DAction.java25 * Action used in Context.doAs
31 byte[] run(Context s, byte[] input) throws Exception;
H A DNonMutualSpnego.java44 Context c = Context.fromJAAS("client");
45 Context s = Context.fromJAAS("server");
51 Context.handshake(c, s);
53 Context.transmit("i say high --", c, s);
54 Context.transmit(" you say low", s, c);
H A DSPNEGO.java41 Context c, s;
42 c = Context.fromJAAS("client");
43 s = Context.fromJAAS("server");
48 Context.handshake(c, s);
50 Context.transmit("i say high --", c, s);
51 Context.transmit(" you say low", s, c);
H A DDupEtypes.java48 Context c, s;
49 c = Context.fromJAAS("client");
50 s = Context.fromJAAS("server");
55 Context.handshake(c, s);
57 Context.transmit("i say high --", c, s);
58 Context.transmit(" you say low", s, c);
H A DNoInitNoKeytab.java51 Context c, s;
52 c = Context.fromJAAS("client");
53 s = Context.fromJAAS("noinit");
58 Context.handshake(c, s);
60 Context.transmit("i say high --", c, s);
61 Context.transmit(" you say low", s, c);
H A DPrincipalNameEquals.java43 Context c, s;
44 c = Context.fromJAAS("client");
45 s = Context.fromJAAS("server");
50 Context.handshake(c, s);
52 Context.transmit("i say high --", c, s);
53 Context.transmit(" you say low", s, c);
H A DAcceptorSubKey.java42 Context c, s;
43 c = Context.fromJAAS("client");
44 s = Context.fromJAAS("server");
49 Context.handshake(c, s);
H A DTwoPrinces.java85 Context s = Context.fromJAAS("me");
89 Context c1 = Context.fromUserPass("u1", "hello".toCharArray(), false);
91 Context.handshake(c1, s);
98 Context c2 = Context.fromUserPass("u2", "hello".toCharArray(), false);
100 Context.handshake(c2, s);
H A DNewSalt.java54 Context c1 = Context.fromUserPass(OneKDC.USER.toUpperCase(),
56 Context c2 = Context.fromUserPass(OneKDC.USER2.toUpperCase(),
62 Context.handshake(c1, c2);
H A DKeyTabCompat.java52 Context c, s;
55 c = Context.fromUserPass(OneKDC.USER, OneKDC.PASS, false);
56 s = Context.fromUserPass(OneKDC.USER2, OneKDC.PASS2, true);
63 Context.handshake(c, s);
66 c = Context.fromJAAS("client");
67 s = Context.fromJAAS("server");
82 Context.handshake(c, s);
H A DIgnoreChannelBinding.java43 Context c = Context.fromJAAS("client");
44 Context s = Context.fromJAAS("server");
49 Context.handshake(c, s);
59 Context.handshake(c, s);
74 Context.handshake(c, s);
90 Context.handshake(c, s);
105 Context.handshake(c, s);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DCycleRecoverable.java63 Object onCycleDetected(Context context);
73 public interface Context { interface in interface:CycleRecoverable
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/
H A DContext.java56 public interface Context extends ValidationContext { interface in inherits:ValidationContext
63 * Returns the immutable snapshot of this {@link Context}.
65 Context copy();
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapReferralException.java29 import javax.naming.Context;
92 public abstract Context getReferralContext() throws NamingException;
116 public abstract Context
156 public abstract Context
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DContext.java32 * A <code>Context</code> object
39 * A <code>Context</code> object is created by first calling the
44 * Each property in a <code>Context</code> object is represented by
51 * <code>Context</code> properties can represent a portion of a client's
56 * propagated), the server may query its <code>Context</code> object
65 * that are present in the client's <code>Context</code> object
66 * to be provided in the <code>Context</code> object parameter to
69 * <code>Context</code> property names (which are strings)
81 * method <code>Context.get_values</code>.
83 * <code>Context</cod
102 public abstract class Context { class
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DResolver.java29 import javax.naming.Context;
37 * that do not support subtypes of Context, but which can act as
57 * <code>Context</code>.
63 * be a subtype of <code>Context</code>.
74 Class<? extends Context> contextType)
85 * be a subtype of <code>Context</code>.
94 Class<? extends Context> contextType)
H A DInitialContextFactory.java39 * context that implement the Context interface.
55 * Creates an Initial Context for beginning name resolution.
66 * @return A non-null initial context object that implements the Context
70 public Context getInitialContext(Hashtable<?,?> environment)
H A DContinuationContext.java39 class ContinuationContext implements Context, Resolver {
42 protected Context contCtx = null;
50 protected Context getTargetContext() throws NamingException {
66 Context ctx = getTargetContext();
71 Context ctx = getTargetContext();
76 Context ctx = getTargetContext();
81 Context ctx = getTargetContext();
86 Context ctx = getTargetContext();
90 Context ctx = getTargetContext();
95 Context ct
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DJavadocTodo.java37 public static void preRegister(Context context) {
38 context.put(todoKey, new Context.Factory<Todo>() {
39 public Todo make(Context c) {
45 protected JavadocTodo(Context context) {
/openjdk7/jdk/src/share/classes/javax/naming/
H A DReferralException.java120 public abstract Context getReferralContext() throws NamingException;
149 public abstract Context
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCheckContext.java36 class CheckContext extends Context {
49 CheckContext(Context ctx, Statement stat) {
/openjdk7/jdk/test/com/sun/jndi/rmi/registry/RegistryContext/
H A DUnbindIdempotent.java35 import javax.naming.Context;
46 Context rctx;
49 rctx = (Context)ictx.lookup("rmi://localhost:" + Integer.toString(registryPort));
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DInputStreamTests.java91 Context iioctx = (Context)ctx;
95 private static class Context extends InputTests.Context { class in class:InputStreamTests
101 Context(TestEnvironment env, Result result) { method in class:InputStreamTests.Context
162 Context ctx = new Context(env, result);
169 final Context ictx = (Context)ctx;
190 Context ct
[all...]
H A DOutputStreamTests.java84 Context iioctx = (Context)ctx;
88 private static class Context extends OutputTests.Context { class in class:OutputStreamTests
94 Context(TestEnvironment env, Result result) { method in class:OutputStreamTests.Context
137 Context ctx = new Context(env, result);
144 final Context octx = (Context)ctx;
165 Context ct
[all...]

Completed in 60 milliseconds

1234567891011>>