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

1234567891011>>

/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/tools/
H A DPartialParser.java28 import jdk.nashorn.internal.runtime.Context;
41 public int getLastExpressionStart(final Context context, final String code);
/openjdk10/jdk/make/src/classes/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...]
/openjdk10/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 DGSSUnbound.java42 Context c, s;
43 c = Context.fromUserPass(OneKDC.USER, OneKDC.PASS, false);
44 s = Context.fromThinAir();
53 Context.handshake(c, s);
55 Context.transmit("i say high --", c, s);
56 Context.transmit(" you say low", s, c);
H A DGSS.java41 Context c, s;
42 c = Context.fromThinAir();
43 s = Context.fromThinAir();
52 Context.handshake(c, s);
54 Context.transmit("i say high --", c, s);
55 Context.transmit(" you say low", s, c);
H A DBasic.java41 Context c, s, s2, b;
42 c = Context.fromJAAS("client");
43 s = Context.fromJAAS("server");
44 b = Context.fromJAAS("backend");
50 Context.handshake(c, s);
52 Context.transmit("i say high --", c, s);
53 Context.transmit(" you say low", s, c);
62 Context.handshake(s2, b);
H A DEmptyPassword.java40 Context c = Context.fromUserPass("empty", "".toCharArray(), false);
H A DDupEtypes.java57 Context c, s;
58 c = Context.fromJAAS("client");
59 s = Context.fromJAAS("server");
64 Context.handshake(c, s);
66 Context.transmit("i say high --", c, s);
67 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 DTwoOrThree.java61 Context c = Context.fromUserPass(OneKDC.USER, OneKDC.PASS, false);
65 Context.fromUserKtab(sub4s, "first", OneKDC.KTAB, true);
66 Context s = Context.fromUserKtab(sub4s, "second", OneKDC.KTAB, true);
69 Context.handshake(c, s);
73 Context.fromUserPass(sub4s, "first", "first".toCharArray(), true);
74 s = Context.fromUserPass(sub4s, "second", "second".toCharArray(), true);
77 Context.handshake(c, s);
H A DTwoTab.java71 Context c, s, s2;
72 c = Context.fromUserPass(OneKDC.USER, OneKDC.PASS, false);
73 s = Context.fromJAAS("server");
74 s2 = Context.fromJAAS("server2");
79 Context.handshake(c, s);
81 Context.transmit("i say high --", c, s);
82 Context.transmit(" you say low", s, c);
87 c = Context.fromUserPass(OneKDC.USER, OneKDC.PASS, false);
91 Context.handshake(c, s2);
93 Context
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/
H A DCycleRecoverable.java63 Object onCycleDetected(Context context);
73 public interface Context { interface in interface:CycleRecoverable
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/logging/
H A DLoggable.java27 import jdk.nashorn.internal.runtime.Context;
43 * Initialize a logger, by asking Context to get or create it
49 public DebugLogger initLogger(final Context context);
/openjdk10/jdk/src/java.naming/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
/openjdk10/corba/src/java.corba/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...]
/openjdk10/jdk/src/java.naming/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...]
/openjdk10/jdk/test/javax/naming/module/src/ldapv4/org/example/ldapv4/
H A Dldapv4URLContextFactory.java40 public Object getObjectInstance(Object urlInfo, Name name, Context nameCtx,
44 env2.put(Context.INITIAL_CONTEXT_FACTORY,
46 String ldapUrl = (String)env.get(Context.PROVIDER_URL);
47 env2.put(Context.PROVIDER_URL, ldapUrl.replaceFirst("ldapv4", "ldap"));
/openjdk10/jaxws/src/jdk.xml.bind/share/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();
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/
H A DReferralException.java120 public abstract Context getReferralContext() throws NamingException;
149 public abstract Context
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DCheckContext.java36 class CheckContext extends Context {
49 CheckContext(Context ctx, Statement stat) {

Completed in 99 milliseconds

1234567891011>>