Searched refs:handler (Results 251 - 275 of 489) sorted by relevance

<<11121314151617181920

/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousServerSocketChannelImpl.java119 CompletionHandler<AsynchronousSocketChannel,Object> handler);
130 CompletionHandler<AsynchronousSocketChannel,? super A> handler)
132 if (handler == null)
133 throw new NullPointerException("'handler' is null");
134 implAccept(attachment, (CompletionHandler<AsynchronousSocketChannel,Object>)handler);
118 implAccept(Object attachment, CompletionHandler<AsynchronousSocketChannel,Object> handler) argument
129 accept(A attachment, CompletionHandler<AsynchronousSocketChannel,? super A> handler) argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java28 import javax.xml.ws.handler.MessageContext;
/openjdk7/jdk/make/mksample/webservices/EbayClient/
H A DMakefile42 $(SAMPLE_DST_DIR)/src/ebay/client/handler/RequesterCredentials.java \
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DSend.java57 SendNotificationHandler handler = new SendNotificationHandler(); field in class:Send
113 channel.receive(buffer, null, handler);
134 streamNumber = handler.maxOutStreams() - 1;
150 streamNumber = handler.maxInStreams;
235 channel.receive(buffer, null, handler);
236 check(handler.receivedCommUp(), "should have received COMM_UP");
347 check(info.streamNumber() == handler.maxOutStreams() - 1,
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSimpleResultTreeImpl.java439 public void copy(final int node, SerializationHandler handler) argument
442 characters(node, handler);
445 public void copy(DTMAxisIterator nodes, SerializationHandler handler) argument
451 copy(node, handler);
455 public String shallowCopy(final int node, SerializationHandler handler) argument
458 characters(node, handler);
475 * Dispatch the character content of a node to an output handler.
478 * a handler.
480 public void characters(final int node, SerializationHandler handler) argument
494 oldEscapeSetting = handler
[all...]
H A DMultiDOM.java494 public void copy(final int node, SerializationHandler handler) argument
498 _adapters[node >>> DTMManager.IDENT_DTM_NODE_BITS].copy(node, handler);
502 public void copy(DTMAxisIterator nodes, SerializationHandler handler) argument
507 _adapters[node >>> DTMManager.IDENT_DTM_NODE_BITS].copy(node, handler);
512 public String shallowCopy(final int node, SerializationHandler handler) argument
518 return _adapters[node >>> DTMManager.IDENT_DTM_NODE_BITS].shallowCopy(node, handler);
534 public void characters(final int textNode, SerializationHandler handler) argument
538 _adapters[textNode >>> DTMManager.IDENT_DTM_NODE_BITS].characters(textNode, handler);
/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/jdk/src/windows/classes/sun/nio/ch/
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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DDOM2TO.java59 * A reference to the output handler receiving the events.
69 public DOM2TO(Node root, SerializationHandler handler) { argument
71 _handler = handler;
78 public void setContentHandler(ContentHandler handler) { argument
104 * Traverse the DOM and generate TO events for a handler. Notice that
296 public void setDTDHandler(DTDHandler handler) throws NullPointerException { argument
320 public void setErrorHandler(ErrorHandler handler) throws argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicColorChooserUI.java68 private Handler handler; field in class:BasicColorChooserUI
138 handler = null;
199 if (handler == null) {
200 handler = new Handler();
202 return handler;
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DCodeWriter.java215 Code_attribute.Exception_data handler = attr.exception_table[i];
217 handler.start_pc, handler.end_pc, handler.handler_pc));
219 int catch_type = handler.catch_type;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerTool.java155 CommandHandler handler;
161 handler = (CommandHandler) handlers.elementAt(i);
162 System.out.print("\t" + handler.getCommandName());
163 for (int j=handler.getCommandName().length();
166 handler.printCommandHelp(System.out,
176 CommandHandler handler;
184 handler = (CommandHandler) handlers.elementAt(i);
185 if (handler.getCommandName().equals(cmd[1])) {
186 handler.printCommandHelp(System.out,
197 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/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp384 // into java, or surprisingly find a matching exception handler for bci 0
428 // exception handler lookup
432 // We threw an exception while trying to find the exception handler.
435 // exception handler for this exception, this time starting at the
436 // BCI of the exception handler which caused the exception to be
461 // handler in this method, or (b) after a stack overflow there is not yet
469 // handler in this method => change bci/bcp to handler bci/bcp and continue there
826 assert(!HAS_PENDING_EXCEPTION, "Event handler should not throw any exceptions");
1057 address handler local
1080 address handler = _handler; local
1117 address handler = set_handler(&buffer); local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
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/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAnnotationImpl.java67 * sent via specified document handler.
130 private synchronized void writeToSAX(ContentHandler handler) { argument
135 parser.setContentHandler(handler);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDKeyrefTraverser.java42 public XSDKeyrefTraverser (XSDHandler handler, argument
44 super(handler, gAttrCheck);
H A DXSDNotationTraverser.java52 XSDNotationTraverser (XSDHandler handler, argument
54 super(handler, gAttrCheck);
H A DXSDWildcardTraverser.java67 * @param handler
71 XSDWildcardTraverser (XSDHandler handler, argument
73 super(handler, gAttrCheck);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLDocumentFilterImpl.java91 public void setDocumentHandler(XMLDocumentHandler handler) { argument
92 this.next = handler;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToSAXHandler.java57 public ToSAXHandler(ContentHandler handler, String encoding) argument
59 setContentHandler(handler);
64 * Underlying SAX handler. Taken from XSLTC
84 /** If this is true, then the content handler wrapped by this
86 * will give the content handler access to the state of
142 // Ignore if a lexical handler has not been set
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DLocateReplyMessage_1_2.java189 public void callback(MessageHandler handler) argument
192 handler.handleInput(this);
H A DReplyMessage_1_0.java196 public void callback(MessageHandler handler) argument
199 handler.handleInput(this);
H A DReplyMessage_1_1.java196 public void callback(MessageHandler handler) argument
199 handler.handleInput(this);
H A DRequestMessage_1_1.java170 public void callback(MessageHandler handler) argument
173 handler.handleInput(this);

Completed in 112 milliseconds

<<11121314151617181920