Searched defs:local (Results 1 - 25 of 87) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalEventTimer.java26 package sun.jvmstat.perfdata.monitor.protocol.local;
36 * for local Java Virtual Machines..
H A DPerfDataBuffer.java26 package sun.jvmstat.perfdata.monitor.protocol.local;
39 * The concrete PerfDataBuffer implementation for the <em>local:</em>
57 * @param vmid the <em>local:</em> URI specifying the target JVM.
H A DLocalVmManager.java26 package sun.jvmstat.perfdata.monitor.protocol.local;
35 * Class for managing the LocalMonitoredVm instances on the local system.
38 * HotSpot Java Virtual Machines on the local host and possibly for a
40 * Machines on the local host may be limited by the permissions of the
60 * Creates a LocalVmManager instance for the local system.
H A DPerfDataFile.java26 package sun.jvmstat.perfdata.monitor.protocol.local;
32 * Class to provide translations from the local Vm Identifier
84 * for the JVM identified by the given local Vm Identifier.
92 * @param lvmid the local Java Virtual Machine Identifier for the target
175 * @param lvmid the local Java Virtual Machine Identifier for the target
225 * Method to extract a local Java Virtual Machine Identifier from the
230 * @return int - the local Java Virtual Machine Identifier for the target
H A DLocalMonitoredVm.java26 package sun.jvmstat.perfdata.monitor.protocol.local;
38 * <em>local:</em> protocol for the HotSpot PerfData monitoring implementation.
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousServerSocketChannel.java40 * It can be bound to a local address and configured to listen for connections
165 * Binds the channel's socket to a local address and configures the socket to
170 * bind(local, 0);
173 * @param local
174 * The local address to bind the socket, or <tt>null</tt> to bind
185 public final AsynchronousServerSocketChannel bind(SocketAddress local) argument
188 return bind(local, 0);
192 * Binds the channel's socket to a local address and configures the socket to
196 * a local address. Once an association is established then the socket remains
206 * @param local
226 bind(SocketAddress local, int backlog) argument
[all...]
H A DNetworkChannel.java38 * socket to a local {@link SocketAddress address}, the {@link #getLocalAddress()
58 * Binds the channel's socket to a local address.
61 * a local address. Once an association is established then the socket remains
62 * bound until the channel is closed. If the {@code local} parameter has the
66 * @param local
87 NetworkChannel bind(SocketAddress local) throws IOException; argument
H A DServerSocketChannel.java126 * Binds the channel's socket to a local address and configures the socket
131 * bind(local, 0);
134 * @param local
135 * The local address to bind the socket, or {@code null} to bind
151 public final ServerSocketChannel bind(SocketAddress local) argument
154 return bind(local, 0);
158 * Binds the channel's socket to a local address and configures the socket to
162 * a local address. Once an association is established then the socket remains
172 * @param local
195 public abstract ServerSocketChannel bind(SocketAddress local, in argument
[all...]
H A DAsynchronousSocketChannel.java200 public abstract AsynchronousSocketChannel bind(SocketAddress local) argument
H A DDatagramChannel.java212 public abstract DatagramChannel bind(SocketAddress local) argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DCachedXPathAPIHolder.java31 static ThreadLocal local=new ThreadLocal(); field in class:CachedXPathAPIHolder
40 CachedXPathAPI cx=(CachedXPathAPI)local.get();
43 local.set(cx);
57 CachedXPathAPI cx=(CachedXPathAPI)local.get();
60 local.set(cx);
/openjdk7/jdk/src/share/classes/com/sun/script/util/
H A DBindingsImpl.java32 * global and local scopes.
40 //base class or local scope
43 //get delegates to local scope
44 protected Bindings local = null; field in class:BindingsImpl
51 local = n;
62 if ((local != null) && (null != (ret = local.get(key)))) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCEventSource.java44 void sendEnterElement( int receiverThreadId, String uri, String local, String qname, Attributes atts ) throws SAXException; argument
46 void sendLeaveElement( int receiverThreadId, String uri, String local, String qname ) throws SAXException; argument
47 void sendEnterAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException; argument
48 void sendLeaveAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DTagName.java68 public String local; field in class:TagName
84 public final boolean matches( String nsUri, String local ) {
85 return this.uri==nsUri && this.local==local;
92 return this.local==name.localName && this.uri==name.nsUri;
106 return '{'+uri+'}'+local;
132 return new QName(uri,local,getPrefix());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCEventSource.java44 void sendEnterElement( int receiverThreadId, String uri, String local, String qname, Attributes atts ) throws SAXException; argument
46 void sendLeaveElement( int receiverThreadId, String uri, String local, String qname ) throws SAXException; argument
47 void sendEnterAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException; argument
48 void sendLeaveAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException; argument
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DMulticastSendReceiveTests.java50 * Send datagram from given local address to given multicast
53 static int sendDatagram(InetAddress local, argument
62 .bind(new InetSocketAddress(local, 0))
68 local.getHostAddress(), group.getHostAddress(), id);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DUnsupportedElement.java52 public UnsupportedElement(String uri, String prefix, String local, boolean isExtension) { argument
53 super(uri, prefix, local);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DAttributesImplSerializer.java97 * @param local the local name of the attribute
107 String local,
113 super.addAttribute(uri, local, qname, type, val);
134 m_buff.append('{').append(uri).append('}').append(local);
157 // Add quick look-up to find with uri/local name pair
159 String local = super.getLocalName(index);
161 m_buff.append('{').append(uri).append('}').append(local);
211 * @param localName the local namer (after the ':' ) of the attribute name.
105 addAttribute( String uri, String local, String qname, String type, String val) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBlockSym.java65 public void addLocal(LocalSym local) { argument
69 locals.add(local);
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DTransferableProxy.java60 public TransferableProxy(Transferable t, boolean local) { argument
62 isLocal = local;
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpServerChannel.java58 * <td> The maximum number of streams requested by the local endpoint during
150 * Binds the channel's socket to a local address and configures the socket
156 * bind(local, 0);
159 * @param local
160 * The local address to bind the socket, or {@code null} to
182 public final SctpServerChannel bind(SocketAddress local) argument
184 return bind(local, 0);
188 * Binds the channel's socket to a local address and configures the socket
192 * and the local address. Once a relationship is established then
194 * may not necesssarily be with the address {@code local} a
237 bind(SocketAddress local, int backlog) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DDOMUtil.java44 public static String getAttribute(Element e, String nsUri, String local) { argument
45 if(e.getAttributeNodeNS(nsUri,local)==null) return null;
46 return e.getAttributeNS(nsUri,local);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DDOMUtil.java157 String local = attr.getLocalName().equals(XMLConstants.XMLNS_ATTRIBUTE) ? "" : attr.getLocalName();
158 if (local.equals(nodePrefix) && attr.getNodeValue().equals(nodeNS)) {
161 if (local.equals("")) {
221 public static Element getFirstChild(Element e, String nsUri, String local) { argument
225 if (c.getLocalName().equals(local) && c.getNamespaceURI().equals(nsUri))
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpServerChannelImpl.java54 public SctpServerChannel bind(SocketAddress local, argument
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DServerSocketAdaptor.java66 public void bind(SocketAddress local) throws IOException { argument
67 bind(local, 50);
70 public void bind(SocketAddress local, int backlog) throws IOException { argument
71 if (local == null)
72 local = new InetSocketAddress(0);
74 ssc.bind(local, backlog);

Completed in 71 milliseconds

1234