Searched refs:handlers (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DHandlerAnnotationInfo.java34 * Used to hold a list of handlers and a set of roles from an
45 private List<Handler> handlers; field in class:HandlerAnnotationInfo
49 * Return the handlers specified by the handler chain descriptor.
54 return handlers;
60 * @param handlers The handlers specified by the handler chain descriptor.
62 public void setHandlers(List<Handler> handlers) { argument
63 this.handlers = handlers;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerProcessor.java54 private List<? extends Handler> handlers; // may be logical/soap mixed field in class:HandlerProcessor
61 * The handlers that are passed in will be sorted into
62 * logical and soap handlers. During this sorting, the
64 * handlers.
67 * be protocol or logical handlers.
74 handlers = chain;
79 * Gives index of the handler in the chain to know what handlers in the chain
96 * return true, if all handlers in the chain return true
98 * return false, One of the handlers has returned false or thrown a
101 * handlers ar
[all...]
H A DServerLogicalHandlerTube.java89 this.handlers = that.handlers;
108 handlers = new ArrayList<Handler>();
111 handlers.addAll(logicalSnapShot);
116 if (!handlers.isEmpty()) {
119 handlers);
121 processor = new SOAPHandlerProcessor(false, this, binding, handlers);
H A DServerMessageHandlerTube.java69 this.handlers = that.handlers;
74 handlers = new ArrayList<Handler>();
78 handlers.addAll(msgHandlersSnapShot);
126 if(!handlers.isEmpty()) {
127 processor = new SOAPHandlerProcessor(false, this, binding, handlers);
H A DServerSOAPHandlerTube.java89 this.handlers = that.handlers;
99 handlers = new ArrayList<Handler>();
103 handlers.addAll(soapSnapShot);
110 if(!handlers.isEmpty())
111 processor = new SOAPHandlerProcessor(false, this, binding, handlers);
H A DClientLogicalHandlerTube.java99 handlers = new ArrayList<Handler>();
102 handlers.addAll(logicalSnapShot);
105 handlers);
108 handlers);
H A DHandlerTube.java47 protected List<Handler> handlers; field in class:HandlerTube
91 // Don't call handlers and dispatch the message.
104 // Call handlers on Request
143 // Don't call handlers.
148 // Call handlers on Response
196 * Calls close on previously invoked handlers.
235 //Close only invoked handlers in the chain
243 //Close all handlers in the chain
246 processor.closeHandlers(msgContext, handlers.size() - 1, 0);
258 //Close only invoked handlers i
[all...]
H A DClientMessageHandlerTube.java132 handlers = new ArrayList<Handler>();
136 handlers.addAll(msgHandlersSnapShot);
139 processor = new SOAPHandlerProcessor(true, this, binding, handlers);
H A DClientSOAPHandlerTube.java96 handlers = new ArrayList<Handler>();
100 handlers.addAll(soapSnapShot);
103 processor = new SOAPHandlerProcessor(true, this, binding, handlers);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DSignal.java31 * signal handlers for the current process. There are two restrictions:
75 private static Hashtable handlers = new Hashtable(4); field in class:Signal
170 synchronized (handlers) {
171 SignalHandler oldHandler = (SignalHandler)handlers.get(sig);
172 handlers.remove(sig);
174 handlers.put(sig, handler);
195 if (handlers.get(sig) == null) {
201 /* Called by the VM to execute Java signal handlers. */
204 final SignalHandler handler = (SignalHandler)handlers.get(sig);
227 * other arbitrary native signal handlers
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibGroup.java330 SnmpRequestTree handlers)
336 if (handlers == null)
339 final Object data = handlers.getUserData();
351 super.findHandlingNode(varbind,oid,depth,handlers);
360 table.findHandlingNode(varbind,oid,depth+1,handlers);
380 handlers.add(this,depth,varbind);
389 SnmpRequestTree handlers, AcmChecker checker)
395 if (handlers == null)
402 final Object data = handlers.getUserData();
403 final int pduVersion = handlers
328 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
387 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
[all...]
H A DSnmpMib.java540 SnmpRequestTree handlers = getHandlers(req,false,false,reqType);
547 "get", "Processing handlers for GET... ");
552 for (Enumeration eh=handlers.getHandlers();eh.hasMoreElements();) {
558 meta = handlers.getMetaNode(h);
561 final int depth = handlers.getOidDepth(h);
563 for (Enumeration rqs=handlers.getSubRequests(h);
581 SnmpRequestTree handlers = null;
588 handlers = ((SnmpMibRequestImpl)req).getRequestTree();
596 if (handlers == null) handlers
[all...]
H A DSnmpMibOid.java148 SnmpRequestTree handlers)
155 if (handlers == null)
182 handlers.add(this,depth,varbind);
184 child.findHandlingNode(varbind,oid,depth+1,handlers);
196 SnmpRequestTree handlers,
204 if (handlers == null)
211 final Object data = handlers.getUserData();
212 final int pduVersion = handlers.getRequestPduVersion();
217 result = findNextHandlingNode(varbind,newOid,0,depth,handlers,
236 // handlers
146 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
194 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
[all...]
H A DSnmpMibTable.java1845 SnmpRequestTree handlers)
1850 if (handlers == null)
1869 final Object data = handlers.getUserData();
1876 if (!handlers.isCreationAllowed())
1895 if (handlers.isSetRequest() && isRowStatus(entryoid,var,data))
1899 handlers.add(this,depth,entryoid,varbind,(!hasEntry),varbind);
1902 handlers.add(this,depth,entryoid,varbind,(!hasEntry));
1914 SnmpRequestTree handlers,
1919 if (handlers == null)
1926 final Object data = handlers
1843 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
1912 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
2066 findNextAccessibleOid(SnmpOid entryoid, SnmpVarBind varbind,long[] oid, int depth, SnmpRequestTree handlers, AcmChecker checker, Object data, long var) argument
[all...]
H A DSnmpMibNode.java148 * @param handlers The Hashtable in which the varbind will be registered
156 SnmpRequestTree handlers)
174 * @param handlers The Hashtable in which the varbind will be registered
184 SnmpRequestTree handlers, AcmChecker checker)
154 findHandlingNode(SnmpVarBind varbind, long[] oid, int depth, SnmpRequestTree handlers) argument
182 findNextHandlingNode(SnmpVarBind varbind, long[] oid, int pos, int depth, SnmpRequestTree handlers, AcmChecker checker) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DForkContentHandler.java57 * Creates ForkContentHandlers so that the specified handlers
60 public static ContentHandler create( ContentHandler[] handlers ) {
61 if(handlers.length==0)
64 ContentHandler result = handlers[0];
65 for( int i=1; i<handlers.length; i++ )
66 result = new ForkContentHandler( result, handlers[i] );
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DTranslet.java37 public void transform(DOM document, SerializationHandler[] handlers) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DStructureLoaderBuilder.java50 void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> handlers); argument
H A DValueProperty.java83 public void buildChildElementUnmarshallers(UnmarshallerChain chainElem, QNameMap<ChildLoader> handlers) { argument
84 handlers.put(StructureLoaderBuilder.TEXT_HANDLER,
H A DListElementProperty.java83 public void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> handlers) { argument
84 handlers.put(tagName, new ChildLoader(new LeafPropertyLoader(xacc),null));
H A DSingleReferenceNodeProperty.java108 public void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> handlers) { argument
110 handlers.put(n.nsUri,n.localName, new ChildLoader(n.getValue().getLoader(chain.context,true),acc));
113 handlers.put(CATCH_ALL,new ChildLoader(new WildcardLoader(domHandler,wcMode),acc));
/openjdk7/jdk/test/java/util/logging/
H A DCustomLogManager.java56 // add handlers
57 if (props.get(name + ".handlers") != null && logger.getHandlers().length == 0) {
69 props.get(pname + ".handlers") != null) {
70 // This pname has a level/handlers definition.
107 props.put("CustomLogManagerTest.handlers", "CustomLogManager$CustomHandler");
109 props.put("SimpleLogManager.handlers", "CustomLogManager$CustomHandler");
111 props.put(".handlers", "CustomLogManager$CustomHandler");
113 props.put("org.foo.handlers", "CustomLogManager$CustomHandler");
115 props.put("org.openjdk.handlers", "CustomLogManager$CustomHandler");
130 System.out.format("Logger \"%s\" level=%s handlers
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerTool.java160 for (int i=0; i < handlers.size(); i++) {
161 handler = (CommandHandler) handlers.elementAt(i);
183 for (int i=0; i < handlers.size(); i++) {
184 handler = (CommandHandler) handlers.elementAt(i);
196 for (int i=0; i < handlers.size(); i++) {
197 handler = (CommandHandler) handlers.elementAt(i);
232 static Vector handlers; field in class:ServerTool
236 handlers = new Vector();
237 handlers.addElement(new RegisterServer());
238 handlers
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DDocumentHandler.java65 private final Map<String, Class<? extends ElementHandler>> handlers = new HashMap<>(); field in class:DocumentHandler
96 // some handlers for new elements
179 Class<? extends ElementHandler> type = this.handlers.get(name);
193 this.handlers.put(name, handler);
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp597 void Parse::catch_call_exceptions(ciExceptionHandlerStream& handlers) { argument
606 for (; !handlers.is_done(); handlers.next()) {
607 ciExceptionHandler* h = handlers.handler();
635 // handlers
696 // Case 2: we have some handlers, with loaded exception klasses that have
699 // Case 3: We have some handlers with subklasses or are not loaded at
717 // determine potential exception handlers
718 ciExceptionHandlerStream handlers(method(), bci(),
750 // Scan the exception table for applicable handlers
[all...]

Completed in 109 milliseconds

12