Searched defs:handler (Results 201 - 225 of 311) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToTextSAXHandler.java75 public ToTextSAXHandler(ContentHandler handler, String encoding) argument
77 super(handler,encoding);
H A DToXMLSAXHandler.java42 * on a handler, the ultimate xsl:output method is known to be "xml".
57 // default constructor (need to set content handler ASAP !)
193 * SAX handler's startElement() method has been gathered.
221 * handler.
475 public ToXMLSAXHandler(ContentHandler handler, String encoding) argument
477 super(handler, encoding);
485 ContentHandler handler,
489 super(handler, lex, encoding);
586 // Pass the processing instruction to the SAX handler
597 * prefix. Inform SAX handler i
484 ToXMLSAXHandler( ContentHandler handler, LexicalHandler lex, String encoding) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/
H A DNode.java930 * @param handler The handler to associate to that key, or
939 UserDataHandler handler);
937 setUserData(String key, Object data, UserDataHandler handler) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DMessageBase.java934 public void callback(MessageHandler handler) argument
937 handler.handleInput(this);
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyStore.java319 private final CallbackHandler handler; field in class:KeyStore.CallbackHandlerProtection
325 * @param handler the CallbackHandler
326 * @exception NullPointerException if handler is null
328 public CallbackHandlerProtection(CallbackHandler handler) { argument
329 if (handler == null) {
330 throw new NullPointerException("handler must not be null");
332 this.handler = handler;
341 return handler;
1601 CallbackHandler handler
[all...]
/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...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp389 ciExceptionHandler* handler = handlers.handler(); local
390 int start = handler->start();
391 int limit = handler->limit();
392 int handler_bci = handler->handler_bci();
402 if (handler->is_catch_all()) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DTTY.java46 EventHandler handler = null; field in class:TTY
493 * Fire up an event handler, if the connection was just
498 if ((handler == null) && Env.connection().isOpen()) {
499 handler = new EventHandler(this, false);
559 if (handler != null) {
560 handler.shutdown();
701 * Connection opened on startup. Start event handler
705 this.handler = new EventHandler(this, true);
771 handler.handleDisconnectedException();
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DWinGammaPlatform.java72 ArgRuleSpecific(String arg, ArgHandler handler) { argument
73 super(arg, handler);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.cpp247 // Generate code for exception handler.
251 // Generate code for deopt handler.
255 // Emit the MethodHandle deopt handler code (if required).
257 // We can use the same code as for the normal deopt handler, we
263 // Emit the handler to remove the activation from the stack and
279 // Call stubs + two deopt handlers (regular and MH) + exception handler
426 // Generate an ExceptionHandlerTable from the exception handler
450 XHandler* handler = handlers->handler_at(i); local
451 assert(handler->entry_pco() != -1, "must have been generated");
453 int e = bcis->find(handler
[all...]
H A Dc1_LIRAssembler.cpp182 XHandler* handler = handlers->handler_at(j); local
183 assert(handler->lir_op_id() != -1, "handler not processed by LinearScan");
184 assert(handler->entry_code() == NULL ||
185 handler->entry_code()->instructions_list()->last()->code() == lir_branch ||
186 handler->entry_code()->instructions_list()->last()->code() == lir_delay_slot, "last operation must be branch");
188 if (handler->entry_pco() == -1) {
190 if (handler->entry_code() != NULL && handler->entry_code()->instructions_list()->length() > 1) {
191 handler
[all...]
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DParserAdapter.java321 * Set the DTD handler.
323 * @param handler the new DTD handler
326 public void setDTDHandler (DTDHandler handler) argument
328 dtdHandler = handler;
333 * Return the current DTD handler.
335 * @return the current DTD handler, or null if none was supplied
345 * Set the content handler.
347 * @param handler the new content handler
350 setContentHandler(ContentHandler handler) argument
374 setErrorHandler(ErrorHandler handler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferProcessor.java58 * Reference to dtd handler.
63 * Reference to content handler.
68 * Reference to error handler.
73 * Reference to lexical handler.
180 public void setDTDHandler(DTDHandler handler) { argument
181 _dtdHandler = handler;
188 public void setContentHandler(ContentHandler handler) { argument
189 _contentHandler = handler;
196 public void setErrorHandler(ErrorHandler handler) { argument
197 _errorHandler = handler;
204 setLexicalHandler(LexicalHandler handler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
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...]
/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...]
H A DWindowsAsynchronousSocketChannelImpl.java179 * Implements the task to initiate a connection and the handler to
259 * Invoked by handler thread when connection established.
289 * Invoked by handler thread when failed to establish connection.
306 CompletionHandler<Void,? super A> handler)
310 if (handler == null)
312 Invoker.invoke(this, handler, attachment, null, exc);
347 if (handler == null)
349 Invoker.invoke(this, handler, attachment, null, bindException);
355 new PendingFuture<Void,A>(this, handler, attachment);
369 * Implements the task to initiate a read and the handler t
304 implConnect(SocketAddress remote, A attachment, CompletionHandler<Void,? super A> handler) argument
602 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
859 implWrite(boolean gatheringWrite, ByteBuffer src, ByteBuffer[] srcs, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousSocketChannelImpl.java194 CompletionHandler<Void,? super A> handler);
204 CompletionHandler<Void,? super A> handler)
206 if (handler == null)
207 throw new NullPointerException("'handler' is null");
208 implConnect(remote, attachment, handler);
220 CompletionHandler<V,? super A> handler);
229 CompletionHandler<V,? super A> handler)
233 if (handler == null)
235 Invoker.invoke(this, handler, att, null, e);
269 if (handler
192 implConnect(SocketAddress remote, A attachment, CompletionHandler<Void,? super A> handler) argument
202 connect(SocketAddress remote, A attachment, CompletionHandler<Void,? super A> handler) argument
214 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
223 read(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A att, CompletionHandler<V,? super A> handler) argument
286 read(ByteBuffer dst, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler) argument
300 read(ByteBuffer[] dsts, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler) argument
323 implWrite(boolean isGatheringWrite, ByteBuffer src, ByteBuffer[] srcs, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
332 write(boolean isGatheringWrite, ByteBuffer src, ByteBuffer[] srcs, long timeout, TimeUnit unit, A att, CompletionHandler<V,? super A> handler) argument
390 write(ByteBuffer src, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler) argument
402 write(ByteBuffer[] srcs, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DReliableLog.java106 private LogHandler handler; field in class:ReliableLog
134 * if an exception occurs during invocation of the handler's
138 LogHandler handler,
154 this.handler = handler;
160 snapshot(handler.initialSnapshot());
181 LogHandler handler)
184 this(dirPath, handler, false);
219 snapshot = handler.recover(in);
285 handler
137 ReliableLog(String dirPath, LogHandler handler, boolean pad) argument
180 ReliableLog(String dirPath, LogHandler handler) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DUnixAsynchronousSocketChannelImpl.java187 // complete write if write operation has a completion handler.
203 * Invoked by event handler thread when file descriptor is polled
270 // invoke handler and set result
271 CompletionHandler<Void,Object> handler = connectHandler;
274 if (handler == null) {
278 Invoker.invokeUnchecked(handler, att, null, e);
280 Invoker.invokeIndirectly(this, handler, att, null, e);
289 CompletionHandler<Void,? super A> handler)
293 if (handler == null) {
296 Invoker.invoke(this, handler, attachmen
287 implConnect(SocketAddress remote, A attachment, CompletionHandler<Void,? super A> handler) argument
471 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
666 implWrite(boolean isGatheringWrite, ByteBuffer src, ByteBuffer[] srcs, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DDOM.java76 public void copy(final int node, SerializationHandler handler) argument
78 public void copy(DTMAxisIterator nodes, SerializationHandler handler) argument
80 public String shallowCopy(final int node, SerializationHandler handler) argument
83 public void characters(final int textNode, SerializationHandler handler) argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDOMAdapter.java302 public void copy(final int node, SerializationHandler handler) argument
305 _dom.copy(node, handler);
308 public void copy(DTMAxisIterator nodes,SerializationHandler handler) argument
311 _dom.copy(nodes, handler);
314 public String shallowCopy(final int node, SerializationHandler handler) argument
318 return _enhancedDOM.shallowCopy(node, handler);
321 return _dom.shallowCopy(node, handler);
330 public void characters(final int textNode, SerializationHandler handler) argument
334 _enhancedDOM.characters(textNode, handler);
337 _dom.characters(textNode, handler);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
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/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java136 /** Property identifier: error handler. */
401 * Sets the document handler on the last component in the pipeline
404 * @param documentHandler The document handler.
410 /** Returns the registered document handler. */
416 * Sets the DTD handler.
418 * @param dtdHandler The DTD handler.
424 /** Returns the registered DTD handler. */
430 * Sets the DTD content model handler.
432 * @param handler The DTD content model handler
434 setDTDContentModelHandler(XMLDTDContentModelHandler handler) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DJAXPValidatorComponent.java146 XMLErrorHandler handler = fErrorReporter.getErrorHandler();
147 if(handler!=null) return handler;
247 handler().characters(new XMLString(ch,start,len),aug());
255 handler().ignorableWhitespace(new XMLString(ch,start,len),aug());
264 handler().startElement(toQName(uri,localName,qname), fCurrentAttributes, elementAug());
272 handler().endElement(toQName(uri,localName,qname),aug());
300 * Get the handler to which we should send events.
302 private XMLDocumentHandler handler() { method in class:JAXPValidatorComponent.SAX2XNI
362 public void setContentHandler( ContentHandler handler ) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DXML11NonValidatingConfiguration.java122 /** Property identifier: error handler. */
189 /** The document handler. */
192 /** The DTD handler. */
195 /** The DTD content model handler. */
466 * Sets the document handler on the last component in the pipeline
469 * @param documentHandler The document handler.
481 /** Returns the registered document handler. */
487 * Sets the DTD handler.
489 * @param dtdHandler The DTD handler.
495 /** Returns the registered DTD handler
505 setDTDContentModelHandler(XMLDTDContentModelHandler handler) argument
[all...]

Completed in 293 milliseconds

1234567891011>>