/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/ |
H A D | Context.java | 30 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 D | Action.java | 25 * Action used in Context.doAs 31 byte[] run(Context s, byte[] input) throws Exception;
|
H A D | NonMutualSpnego.java | 44 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 D | SPNEGO.java | 41 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 D | DupEtypes.java | 48 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 D | NoInitNoKeytab.java | 51 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 D | PrincipalNameEquals.java | 43 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 D | AcceptorSubKey.java | 42 Context c, s; 43 c = Context.fromJAAS("client"); 44 s = Context.fromJAAS("server"); 49 Context.handshake(c, s);
|
H A D | TwoPrinces.java | 85 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 D | NewSalt.java | 54 Context c1 = Context.fromUserPass(OneKDC.USER.toUpperCase(), 56 Context c2 = Context.fromUserPass(OneKDC.USER2.toUpperCase(), 62 Context.handshake(c1, c2);
|
H A D | KeyTabCompat.java | 52 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 D | IgnoreChannelBinding.java | 43 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 D | CycleRecoverable.java | 63 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 D | Context.java | 56 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 D | LdapReferralException.java | 29 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 D | Context.java | 32 * 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 D | Resolver.java | 29 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 D | InitialContextFactory.java | 39 * 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 D | ContinuationContext.java | 39 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 D | JavadocTodo.java | 37 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 D | ReferralException.java | 120 public abstract Context getReferralContext() throws NamingException; 149 public abstract Context
|
/openjdk7/jdk/src/share/classes/sun/tools/tree/ |
H A D | CheckContext.java | 36 class CheckContext extends Context { 49 CheckContext(Context ctx, Statement stat) {
|
/openjdk7/jdk/test/com/sun/jndi/rmi/registry/RegistryContext/ |
H A D | UnbindIdempotent.java | 35 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 D | InputStreamTests.java | 91 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 D | OutputStreamTests.java | 84 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...] |