Searched defs:bind (Results 501 - 525 of 588) sorted by relevance

<<21222324

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractUnmarshallerImpl.java26 package javax.xml.bind.helpers;
33 import javax.xml.bind.JAXBException;
34 import javax.xml.bind.PropertyException;
35 import javax.xml.bind.UnmarshalException;
36 import javax.xml.bind.Unmarshaller;
37 import javax.xml.bind.ValidationEventHandler;
38 import javax.xml.bind.JAXBElement;
39 import javax.xml.bind.annotation.adapters.XmlAdapter;
40 import javax.xml.bind.attachment.AttachmentUnmarshaller;
60 * {@link javax.xml.bind
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpChannelImpl.java57 public SctpChannel bind(SocketAddress local) method in class:SctpChannelImpl
H A DSctpMultiChannelImpl.java58 public SctpMultiChannel bind(SocketAddress local, method in class:SctpMultiChannelImpl
/openjdk7/jdk/test/java/net/Socket/
H A DOldImpl.java47 protected void bind(InetAddress host, int port){ method in class:OldImpl.FunkySocketImpl
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousServerSocketChannelImpl.java147 public final AsynchronousServerSocketChannel bind(SocketAddress local, int backlog) method in class:AsynchronousServerSocketChannelImpl
162 Net.bind(fd, isa.getAddress(), isa.getPort());
194 // SO_REUSEADDR emulated when using exclusive bind
218 // SO_REUSEADDR emulated when using exclusive bind
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java146 public void bind(String name, Remote obj) method in class:RegistryImpl
149 checkAccess("Registry.bind");
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextImpl.java76 * The operations bind(), rebind(), bind_context() and rebind_context()
152 public void bind(NameComponent[] n, org.omg.CORBA.Object obj) method in class:NamingContextImpl
453 * Create a new NamingContext, bind it in this Naming Context and return
538 * check if a binding already exists (for bind and bind_context), and
541 * the name and the object to bind. Otherwise, the first component
543 * form of bind passed to the resulting NamingContext.
565 * @see bind
593 // Yes: bind object in this context under the name
611 // bind Object. It is invalid.
630 // No: bind i
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DAbstractPlainDatagramSocketImpl.java93 protected synchronized void bind(int lport, InetAddress laddr) method in class:AbstractPlainDatagramSocketImpl
285 throw new SocketException("Cannot re-bind Socket");
H A DDatagramSocket.java54 * s.bind(new InetSocketAddress(8888));
135 bind(new InetSocketAddress(0));
171 * or the socket could not bind to the specified local port.
181 bind(new InetSocketAddress(0));
216 * @param bindaddr local socket address to bind, or <code>null</code>
220 * or the socket could not bind to the specified local port.
231 bind(bindaddr);
249 * or the socket could not bind to the specified local port.
273 * @param laddr local address to bind
276 * or the socket could not bind t
356 public synchronized void bind(SocketAddress addr) throws SocketException { method in class:DatagramSocket
[all...]
H A DServerSocket.java186 * local IP address to bind to. The <i>bindAddr</i> argument
214 * @param bindAddr the local InetAddress the server will bind to
237 bind(new InetSocketAddress(bindAddr, port), backlog);
318 * an ephemeral port and a valid local address to bind the socket.
320 * @param endpoint The IP address & port number to bind to.
321 * @throws IOException if the bind operation fails, or if the socket
329 public void bind(SocketAddress endpoint) throws IOException { method in class:ServerSocket
330 bind(endpoint, 50);
339 * an ephemeral port and a valid local address to bind the socket.
347 * @param endpoint The IP address & port number to bind t
358 public void bind(SocketAddress endpoint, int backlog) throws IOException { method in class:ServerSocket
[all...]
H A DSocketImpl.java121 protected abstract void bind(InetAddress host, int port) throws IOException; method in class:SocketImpl
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java426 bind(jndiUrl, usemap, objref, rebind);
431 throw newIOException("Cannot bind to URL ["+jndiUrl+"]: "
569 exception = newIOException("Cannot bind to URL: " + e, e);
629 * @param rmiServer The object to bind in the registry
632 void bind(String jndiUrl, Hashtable<?, ?> attributes, method in class:RMIConnectorServer
635 // if jndiURL is not null, we nust bind the stub to a
643 ctx.bind(jndiUrl, rmiServer);
744 * Object that we will bind to the registry.
/openjdk7/jdk/src/share/classes/javax/naming/
H A DContext.java316 * the name to bind; may not be empty
318 * the object to bind; possibly null
324 * @see #bind(String, Object)
326 * @see javax.naming.directory.DirContext#bind(Name, Object,
329 public void bind(Name name, Object obj) throws NamingException; method in interface:Context
333 * See {@link #bind(Name, Object)} for details.
336 * the name to bind; may not be empty
338 * the object to bind; possibly null
344 public void bind(String name, Object obj) throws NamingException; method in interface:Context
357 * the name to bind; ma
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaCtx.java97 final public void bind(Name name, Object obj, Attributes attrs) method in class:LdapSchemaCtx
117 "Cannot bind arbitrary object; use createSubcontext()");
123 // override to use bind() instead
131 bind(name, obj, attrs);
139 "Cannot bind arbitrary object; use createSubcontext()");
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java131 public void bind(Name name, Object obj) throws NamingException { method in class:RegistryContext
134 "RegistryContext: Cannot bind empty name"));
137 registry.bind(name.get(0), encodeObject(obj, name.getPrefix(1)));
147 public void bind(String name, Object obj) throws NamingException { method in class:RegistryContext
148 bind(new CompositeName(name), obj);
187 * lookup, bind, unbind. The sequence is not performed atomically.
190 bind(newName, lookup(oldName));
441 "object to bind must be Remote, Reference, or Referenceable"));
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeContext.java190 public void bind(String name, Object newObj) throws NamingException { method in class:PartialCompositeContext
191 bind(new CompositeName(name), newObj);
194 public void bind(Name name, Object newObj) throws NamingException { method in class:PartialCompositeContext
209 cctx.bind(e.getRemainingName(), newObj);
H A DPartialCompositeDirContext.java202 public void bind(String name, Object obj, Attributes attrs) method in class:PartialCompositeDirContext
204 bind(new CompositeName(name), obj, attrs);
207 public void bind(Name name, Object obj, Attributes attrs) method in class:PartialCompositeDirContext
223 cctx.bind(e.getRemainingName(), obj, attrs);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLContext.java222 public void bind(String name, Object obj) throws NamingException { method in class:GenericURLContext
226 ctx.bind(res.getRemainingName(), obj);
232 public void bind(Name name, Object obj) throws NamingException { method in class:GenericURLContext
234 bind(name.get(0), obj);
238 ctx.bind(name.getSuffix(1), obj);
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/ldap/
H A DldapURLContext.java106 public void bind(String name, Object obj) throws NamingException { method in class:ldapURLContext
110 super.bind(name, obj);
114 public void bind(Name name, Object obj) throws NamingException { method in class:ldapURLContext
118 super.bind(name, obj);
361 public void bind(String name, Object obj, Attributes attrs) method in class:ldapURLContext
366 super.bind(name, obj, attrs);
370 public void bind(Name name, Object obj, Attributes attrs) method in class:ldapURLContext
375 super.bind(name, obj, attrs);
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.cpp168 void AbstractAssembler::bind(Label& L) { function in class:AbstractAssembler
170 // Assembler can bind a label more than once to the same place.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DJAXBRIContext.java26 package com.sun.xml.internal.bind.api;
35 import javax.xml.bind.JAXBContext;
36 import javax.xml.bind.JAXBException;
37 import javax.xml.bind.Marshaller;
38 import javax.xml.bind.SchemaOutputResolver;
39 import javax.xml.bind.annotation.XmlAttachmentRef;
45 import com.sun.xml.internal.bind.api.impl.NameConverter;
46 import com.sun.xml.internal.bind.v2.ContextFactory;
47 import com.sun.xml.internal.bind.v2.model.annotation.RuntimeAnnotationReader;
48 import com.sun.xml.internal.bind
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java26 package com.sun.xml.internal.bind.api.impl;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DXMLWriter.java34 package com.sun.xml.internal.bind.marshaller;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DModelBuilder.java26 package com.sun.xml.internal.bind.v2.model.impl;
31 import javax.xml.bind.annotation.XmlAttachmentRef;
32 import javax.xml.bind.annotation.XmlRegistry;
33 import javax.xml.bind.annotation.XmlSchema;
34 import javax.xml.bind.annotation.XmlSeeAlso;
35 import javax.xml.bind.annotation.XmlTransient;
38 import com.sun.xml.internal.bind.util.Which;
39 import com.sun.xml.internal.bind.v2.model.annotation.AnnotationReader;
40 import com.sun.xml.internal.bind.v2.model.annotation.ClassLocatable;
41 import com.sun.xml.internal.bind
[all...]
H A DPropertyInfoImpl.java26 package com.sun.xml.internal.bind.v2.model.impl;
32 import javax.xml.bind.annotation.XmlAttachmentRef;
33 import javax.xml.bind.annotation.XmlElement;
34 import javax.xml.bind.annotation.XmlElementWrapper;
35 import javax.xml.bind.annotation.XmlID;
36 import javax.xml.bind.annotation.XmlIDREF;
37 import javax.xml.bind.annotation.XmlInlineBinaryData;
38 import javax.xml.bind.annotation.XmlMimeType;
39 import javax.xml.bind.annotation.XmlSchema;
40 import javax.xml.bind
[all...]

Completed in 614 milliseconds

<<21222324