Searched refs:context (Results 401 - 425 of 854) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DContextList.java86 public synchronized void remove (HttpContextImpl context) argument
90 if (ctx.equals (context)) {
95 throw new IllegalArgumentException ("no such context in list");
H A DHttpServerImpl.java85 public void removeContext (HttpContext context) throws IllegalArgumentException { argument
86 server.removeContext (context);
H A DHttpsServerImpl.java93 public void removeContext (HttpContext context) throws IllegalArgumentException { argument
94 server.removeContext (context);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DFilterExprIteratorSimple.java37 * doesn't need to set the context.
72 * Initialize the context values for this expression
75 * @param context The XPath runtime context for this
78 public void setRoot(int context, Object environment) argument
80 super.setRoot(context, environment);
81 m_exprObj = executeFilterExpr(context, m_execContext, getPrefixResolver(),
89 public static XNodeSet executeFilterExpr(int context, XPathContext xctxt, argument
101 xctxt.pushCurrentNode(context);
105 // and so we may not be in the context o
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/linux_sparc/
H A DLinuxSPARCJavaThreadPDAccess.java124 SPARCThreadContext context = (SPARCThreadContext) t.getContext();
128 Address sp = context.getRegisterAsAddress(SPARCThreadContext.R_SP);
129 Address pc = context.getRegisterAsAddress(SPARCThreadContext.R_PC);
146 SPARCThreadContext context = (SPARCThreadContext) t.getContext();
147 return SPARCFrame.unBiasSP(context.getRegisterAsAddress(SPARCThreadContext.R_SP));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_sparc/
H A DSolarisSPARCJavaThreadPDAccess.java132 SPARCThreadContext context = (SPARCThreadContext) t.getContext();
136 Address sp = context.getRegisterAsAddress(SPARCThreadContext.R_SP);
137 Address pc = context.getRegisterAsAddress(SPARCThreadContext.R_PC);
154 SPARCThreadContext context = (SPARCThreadContext) t.getContext();
155 return SPARCFrame.unBiasSP(context.getRegisterAsAddress(SPARCThreadContext.R_SP));
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMExcC14NMethod.java63 public void init(XMLStructure parent, XMLCryptoContext context) argument
65 super.init(parent, context);
92 public void marshalParams(XMLStructure parent, XMLCryptoContext context) argument
95 super.marshalParams(parent, context);
102 DOMUtils.getNSPrefix(context, CanonicalizationMethod.EXCLUSIVE);
H A DDOMXPathFilter2Transform.java70 public void init(XMLStructure parent, XMLCryptoContext context) argument
73 super.init(parent, context);
123 public void marshalParams(XMLStructure parent, XMLCryptoContext context) argument
126 super.marshalParams(parent, context);
129 String prefix = DOMUtils.getNSPrefix(context, Transform.XPATH2);
H A DDOMReference.java192 public DOMReference(Element refElem, XMLCryptoContext context, argument
194 boolean secVal = Utils.secureValidation(context);
205 (new DOMTransform(transformElem, context, provider));
288 public void marshal(Node parent, String dsPrefix, DOMCryptoContext context) argument
311 transform.marshal(transformsElem, dsPrefix, context);
316 ((DOMDigestMethod) digestMethod).marshal(refElem, dsPrefix, context);
394 private Data dereference(XMLCryptoContext context) argument
399 URIDereferencer deref = context.getURIDereferencer();
404 data = deref.dereference(this, context);
419 XMLCryptoContext context) throw
418 transform(Data dereferencedData, XMLCryptoContext context) argument
[all...]
H A DDOMXMLSignature.java131 public DOMXMLSignature(Element sigElem, XMLCryptoContext context, argument
141 si = new DOMSignedInfo(siElem, context, provider);
150 ki = new DOMKeyInfo(nextSibling, context, provider);
161 (new DOMXMLObject(nextSibling, context, provider));
192 public void marshal(Node parent, String dsPrefix, DOMCryptoContext context) argument
194 marshal(parent, null, dsPrefix, context);
198 DOMCryptoContext context) throws MarshalException {
215 ((DOMSignedInfo) si).marshal(sigElem, dsPrefix, context);
218 ((DOMSignatureValue) sv).marshal(sigElem, dsPrefix, context);
222 ((DOMKeyInfo) ki).marshal(sigElem, null, dsPrefix, context);
197 marshal(Node parent, Node nextSibling, String dsPrefix, DOMCryptoContext context) argument
572 marshal(Node parent, String dsPrefix, DOMCryptoContext context) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DSAXConnector.java54 private final UnmarshallingContext context; field in class:SAXConnector
74 this.context = next.getContext();
80 return context.getResult();
84 return context;
125 if((sl = this.context.getStructureLoader()) != null) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DServerLogicalHandlerTube.java130 boolean callHandlersOnRequest(MessageUpdatableContext context, boolean isOneWay) { argument
135 handlerResult = processor.callHandlersRequest(HandlerProcessor.Direction.INBOUND, context, !isOneWay);
147 void callHandlersOnResponse(MessageUpdatableContext context, boolean handleFault) { argument
149 Map<String, DataHandler> atts = (Map<String, DataHandler>) context.get(MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS);
158 processor.callHandlersResponse(HandlerProcessor.Direction.OUTBOUND, context, handleFault);
/openjdk7/jdk/test/com/sun/jndi/ldap/
H A DBalancedParentheses.java105 // set up the environment for creating the initial context
116 // create initial context
117 DirContext context = new InitialDirContext(env);
124 NamingEnumeration answer = context.search(
135 NamingEnumeration answer = context.search(
146 NamingEnumeration answer = context.search(
156 context.close();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTodo.java45 /** The context key for the todo list. */
49 /** Get the Todo instance for this context. */
50 public static Todo instance(Context context) { argument
51 Todo instance = context.get(todoKey);
53 instance = new Todo(context);
58 protected Todo(Context context) { argument
59 context.put(todoKey, this);
H A DEnter.java111 public static Enter instance(Context context) { argument
112 Enter instance = context.get(enterKey);
114 instance = new Enter(context);
118 protected Enter(Context context) { argument
119 context.put(enterKey, this);
121 log = Log.instance(context);
122 reader = ClassReader.instance(context);
123 make = TreeMaker.instance(context);
124 syms = Symtab.instance(context);
125 chk = Check.instance(context);
[all...]
/openjdk7/langtools/test/tools/javac/6304921/
H A DTestLog.java53 Context context = new Context();
55 Options options = Options.instance(context);
58 Log log = Log.instance(context);
61 JavacFileManager.preRegister(context);
62 ParserFactory pfac = ParserFactory.instance(context);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpClientTransport.java86 private final Packet context; field in class:HttpClientTransport
92 context = packet;
94 chunkSize = (Integer)context.invocationProperties.get(JAXWSProperties.HTTP_CLIENT_STREAMING_CHUNK_SIZE);
216 (String) context.invocationProperties.get(HOSTNAME_VERIFICATION_PROPERTY);
228 (HostnameVerifier) context.invocationProperties.get(JAXWSProperties.HOSTNAME_VERIFIER);
235 (SSLSocketFactory) context.invocationProperties.get(JAXWSProperties.SSL_SOCKET_FACTORY);
250 String requestMethod = (String) context.invocationProperties.get(MessageContext.HTTP_REQUEST_METHOD);
255 /*if (context.invocationProperties.get(BindingProviderProperties.BINDING_ID_PROPERTY).equals(HTTPBinding.HTTP_BINDING)){
258 (context.invocationProperties.get(BindingProviderProperties.BINDING_ID_PROPERTY).equals(SOAPBinding.SOAP12HTTP_BINDING) &&
263 Integer reqTimeout = (Integer)context
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DMessager.java53 public static Messager instance0(Context context) { argument
54 Log instance = context.get(logKey);
60 public static void preRegister(Context context, argument
62 context.put(logKey, new Context.Factory<Log>() {
69 public static void preRegister(Context context, argument
74 context.put(logKey, new Context.Factory<Log>() {
103 protected Messager(Context context, String programName) { argument
104 this(context, programName, defaultErrWriter, defaultWarnWriter, defaultNoticeWriter);
115 protected Messager(Context context, argument
120 super(context, errWrite
[all...]
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLGraphicsConfig.m60 OGLContext *oglc = (OGLContext*)cglinfo->context;
67 [ctxinfo->context clearDrawable];
68 [ctxinfo->context release];
144 * This is a globally shared context used when creating textures. When any
145 * new contexts are created, they specify this context as the "share list"
146 * context, which means any texture objects created when this shared context
147 * is current will be available to any other context in any other thread.
298 NSOpenGLContext *context =
302 if (context
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DApt.java85 private Context context; field in class:Apt
87 /** The context key for the todo list. */
92 /** Get the Apt instance for this context. */
93 public static Apt instance(Context context) { argument
94 Apt instance = context.get(aptKey);
96 instance = new Apt(context);
101 protected Apt(Context context) { argument
102 this.context = context;
104 context
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodContext.java64 // Creation of the context's composition area handler is
203 * Gets this context's composition area handler, creating it if necessary.
204 * If requested, it grabs the composition area for use by this context.
222 * Grabs the composition area for use by this context.
231 // if this context hasn't seen a need for a composition area yet,
240 * this context's composition area handler.
337 InputContext context = attachToInputContext ? this : null;
338 return createInputMethodWindow(title, context, false);
343 InputContext context = attachToInputContext ? this : null;
344 return (JFrame)createInputMethodWindow(title, context, tru
347 createInputMethodWindow(String title, InputContext context, boolean isSwing) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DSingleElementLeafProperty.java65 public SingleElementLeafProperty(JAXBContextImpl context, RuntimeElementPropertyInfo prop) { argument
66 super(context, prop);
68 tagName = context.nameBuilder.createElementName(ref.getTagName());
72 this.acc = prop.getAccessor().optimize(context);
74 xacc = TransducedAccessor.get(context, ref);
77 improvedXsiTypeHandling = context.improvedXsiTypeHandling;
127 if (nillable || chain.context.allNillable)
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DWrapToken.java110 * @param context the mechanism context associated with this
119 public WrapToken(Krb5Context context, argument
124 super(Krb5Token.WRAP_ID, context,
141 * @param context the mechanism context associated with this
149 public WrapToken(Krb5Context context, argument
154 super(Krb5Token.WRAP_ID, context, is, prop);
400 public WrapToken(Krb5Context context, MessageProp prop, argument
404 super(Krb5Token.WRAP_ID, context);
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAAShapePipe.java165 Object context = null;
168 context = outpipe.startSequence(sg, s,
187 outpipe.needTile(context, x, y, w, h) == false)
190 outpipe.skipTile(context, x, y);
201 outpipe.renderPathTile(context, atile, 0, tw,
207 if (context != null) {
208 outpipe.endSequence(context);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DElementBeanInfoImpl.java218 UnmarshallingContext context = state.getContext();
221 child = context.getOuterPeer();
227 reset((JAXBElement)child,context);
230 child = context.createInstance(ElementBeanInfoImpl.this);
234 context.recordOuterPeer(child);
271 public Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) { argument
274 UnmarshallerChain c = new UnmarshallerChain(context);
287 public final JAXBElement createInstance(UnmarshallingContext context) throws IllegalAccessException, InvocationTargetException, InstantiationException { argument
298 public boolean reset(JAXBElement e, UnmarshallingContext context) { argument

Completed in 101 milliseconds

<<11121314151617181920>>