Searched refs:handler (Results 151 - 175 of 489) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp349 _end = _method->_handler_count + 1; // include the rethrow handler
361 // or will ever produce. Do not include the final rethrow handler.
362 // That is, a trivial exception handler stream will have a count
363 // of zero and produce just the rethrow handler.
367 // Include the current handler, and the final rethrow handler.
380 ciExceptionHandler* handler = _method->_exception_handlers[_pos]; local
381 if (handler->is_in_range(_bci)) {
382 if (handler->is_catch_all()) {
386 } else if (_exception_klass == NULL || !handler
411 ciExceptionHandler* handler() { function in class:ciExceptionHandlerStream
[all...]
H A DciMethodBlocks.cpp73 // Move an exception handler information if needed.
271 ciExceptionHandler* handler = str.handler(); local
272 ciBlock *eb = make_block_at(handler->handler_bci());
288 int ex_start = handler->start();
289 int ex_end = handler->limit();
296 // Extend old handler exception range to cover additional range.
315 ciExceptionHandler* handler = str.handler(); local
316 int ex_start = handler
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java126 public void addChild(ElementHandler<?, ? super T> handler) { argument
127 assert handler != null;
128 hashtable.put(handler.getName(), handler);
229 ElementHandler handler = stack.pop();
230 if (handler != null) {
231 handler.endElement();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSAXImpl.java1559 * Copy the string value of a node directly to an output handler
1561 public void characters(final int node, SerializationHandler handler) argument
1566 dispatchCharactersEvents(node, handler, false);
1574 * Copy a node-set to an output handler
1576 public void copy(DTMAxisIterator nodes, SerializationHandler handler) argument
1581 copy(node, handler);
1586 * Copy the whole tree to an output handler
1588 public void copy(SerializationHandler handler) throws TransletException argument
1590 copy(getDocument(), handler);
1600 public void copy(final int node, SerializationHandler handler) argument
1607 copy(final int node, SerializationHandler handler, boolean isChild) argument
1689 copyPI(final int node, SerializationHandler handler) argument
1705 shallowCopy(final int node, SerializationHandler handler) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTrAXFilter.java133 public void setContentHandler (ContentHandler handler) argument
135 _transformerHandler.setResult(new SAXResult(handler));
147 public void setErrorListener (ErrorListener handler) { } argument
H A DTransformerImpl.java108 "http://xml.org/sax/properties/lexical-handler";
154 * A reference to an output handler factory.
348 // Pass output properties to handler if identity
373 * Create an output handler for the transformation output based on
397 // Return the content handler for this Result object
402 final ContentHandler handler = target.getHandler();
404 _tohFactory.setHandler(handler);
601 private void transformIdentity(Source source, SerializationHandler handler) argument
616 // Hook up reader and output handler
618 reader.setProperty(LEXICAL_HANDLER_PROPERTY, handler);
709 transform(Source source, SerializationHandler handler, String encoding) argument
1018 transferOutputProperties(SerializationHandler handler) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTextAreaUI.java55 private Handler handler = new Handler(); field in class:SynthTextAreaUI
76 getComponent().addFocusListener(handler);
87 getComponent().removeFocusListener(handler);
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationID.java214 InvocationHandler handler = Proxy.getInvocationHandler(activator);
215 if (!(handler instanceof RemoteObjectInvocationHandler)) {
217 "unexpected invocation handler");
219 ref = ((RemoteObjectInvocationHandler) handler).getRef();
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJVM_MANAGEMENT_MIB_IMPL.java203 private final NotificationHandler handler; field in class:JVM_MANAGEMENT_MIB_IMPL
212 handler = new NotificationHandler();
214 emitter.addNotificationListener(handler, null, null);
271 emitter.removeNotificationListener(handler);
643 private int findInCache(SnmpTableHandler handler, argument
646 if (!(handler instanceof SnmpCachedData)) {
647 if (handler != null) {
649 handler.getClass().getName();
655 final SnmpCachedData data = (SnmpCachedData)handler;
667 private SnmpOid getJvmMemPoolEntryIndex(SnmpTableHandler handler, argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DDelegateHttpsURLConnection.java68 sun.net.www.protocol.http.Handler handler,
71 this(url, null, handler, httpsURLConnection);
75 sun.net.www.protocol.http.Handler handler,
78 super(url, p, handler);
67 DelegateHttpsURLConnection(URL url, sun.net.www.protocol.http.Handler handler, com.sun.net.ssl.HttpsURLConnection httpsURLConnection) argument
74 DelegateHttpsURLConnection(URL url, Proxy p, sun.net.www.protocol.http.Handler handler, com.sun.net.ssl.HttpsURLConnection httpsURLConnection) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DStAX2SAXReader.java43 * Content handler where events are pushed.
48 * Lexical handler to report lexical events.
57 public StAX2SAXReader(XMLStreamReader reader, ContentHandler handler) { argument
58 _handler = handler;
66 public void setContentHandler(ContentHandler handler) { argument
67 _handler = handler;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DIndentingXMLFilter.java47 public IndentingXMLFilter(ContentHandler handler) { argument
48 setContentHandler(handler);
51 public IndentingXMLFilter(ContentHandler handler, LexicalHandler lexical) { argument
52 setContentHandler(handler);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DWSPortInfo.java36 import javax.xml.ws.handler.PortInfo;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DHandlerConfigurator.java32 import com.sun.xml.internal.ws.handler.HandlerChainsModel;
38 import javax.xml.ws.handler.Handler;
39 import javax.xml.ws.handler.HandlerResolver;
40 import javax.xml.ws.handler.PortInfo;
100 * map of PortInfo objects to handler chains. It is used by a
106 * must match when getting a handler chain from the map.
110 * a handler chain and then it sets the chains on this class and they
111 * are put into the map. The ServiceContext uses the map to set handler
118 com.sun.xml.internal.ws.util.Constants.LoggingDomain + ".handler");
162 logger.fine("No handler chai
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DSchemaValidation.java69 * Configure the validation behaviour w.r.t error handling. The default handler
74 Class<? extends ValidationErrorHandler> handler() default DraconianValidationErrorHandler.class;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DClientLogicalHandlerTube.java26 package com.sun.xml.internal.ws.handler;
37 import javax.xml.ws.handler.LogicalHandler;
38 import javax.xml.ws.handler.MessageContext;
39 import javax.xml.ws.handler.Handler;
64 * first and then a LogicalHandlerTube is created with a handler to that
H A DClientMessageHandlerTube.java26 package com.sun.xml.internal.ws.handler;
30 import com.sun.xml.internal.ws.api.handler.MessageHandler;
45 import javax.xml.ws.handler.MessageContext;
46 import javax.xml.ws.handler.Handler;
H A DClientSOAPHandlerTube.java26 package com.sun.xml.internal.ws.handler;
40 import javax.xml.ws.handler.soap.SOAPHandler;
41 import javax.xml.ws.handler.MessageContext;
42 import javax.xml.ws.handler.Handler;
72 * first and then a SOAPHandlerTube is created with a handler to that
H A DHandlerChainsModel.java26 package com.sun.xml.internal.ws.handler;
40 import javax.xml.ws.handler.Handler;
41 import javax.xml.ws.handler.PortInfo;
78 * reader should be on <handler-chains> element
109 // process all <handler> elements
111 HandlerType handler = new HandlerType();
117 handler.setHandlerName(handlerName);
121 // handler class
125 handler.setHandlerClass(handlerClass);
138 // roles (not stored per handler)
[all...]
H A DServerLogicalHandlerTube.java26 package com.sun.xml.internal.ws.handler;
40 import javax.xml.ws.handler.LogicalHandler;
41 import javax.xml.ws.handler.MessageContext;
42 import javax.xml.ws.handler.Handler;
69 * first and then a LogicalHandlerTube is created with a handler to that
H A DServerMessageHandlerTube.java26 package com.sun.xml.internal.ws.handler;
29 import com.sun.xml.internal.ws.api.handler.MessageHandler;
43 import javax.xml.ws.handler.MessageContext;
44 import javax.xml.ws.handler.Handler;
H A DServerSOAPHandlerTube.java26 package com.sun.xml.internal.ws.handler;
40 import javax.xml.ws.handler.soap.SOAPHandler;
41 import javax.xml.ws.handler.MessageContext;
42 import javax.xml.ws.handler.Handler;
73 * first and then a SOAPHandlerTube is created with a handler to that
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLProperties.java33 import javax.xml.ws.handler.MessageContext;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpResponseProperties.java32 import javax.xml.ws.handler.MessageContext;
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.java239 // synchronize on result to avoid race with handler thread
262 // invoke completion handler
268 // release waiters and invoke completion handler
297 final CompletionHandler<FileLock,? super A> handler)
308 if (handler == null)
310 Invoker.invoke(this, handler, attachment, null, exc);
316 new PendingFuture<FileLock,A>(this, handler, attachment);
474 // invoke completion handler
488 // release waiters and invoke completion handler
521 CompletionHandler<Integer,? super A> handler)
293 implLock(final long position, final long size, final boolean shared, A attachment, final CompletionHandler<FileLock,? super A> handler) argument
518 implRead(ByteBuffer dst, long position, A attachment, CompletionHandler<Integer,? super A> handler) argument
694 implWrite(ByteBuffer src, long position, A attachment, CompletionHandler<Integer,? super A> handler) argument
[all...]

Completed in 99 milliseconds

1234567891011>>