Searched defs:connect (Results 51 - 75 of 112) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousSocketChannel.java47 * <p> A newly-created channel is connected by invoking its {@link #connect connect}
278 * <p> This method initiates an operation to connect this channel. The
313 public abstract <A> void connect(SocketAddress remote, method in class:AsynchronousSocketChannel
320 * <p> This method initiates an operation to connect this channel. This
322 * #connect(SocketAddress, Object, CompletionHandler)} method except that
344 public abstract Future<Void> connect(SocketAddress remote); method in class:AsynchronousSocketChannel
H A DDatagramChannel.java45 * connected, by invoking its {@link #connect connect} method, in order to
254 * java.net.DatagramSocket#connect connect} method of the {@link
279 * while the connect operation is in progress
283 * while the connect operation is in progress, thereby
294 public abstract DatagramChannel connect(SocketAddress remote) method in class:DatagramChannel
357 * the {@link #connect connect} method.
417 * socket via the {@link #connect connec
[all...]
H A DSocketChannel.java44 * socket channel can be connected by invoking its {@link #connect connect}
51 * remote socket may be initiated via the {@link #connect connect} method for
106 * #connect connect} and {@link #finishConnect finishConnect} methods are
149 * method, invoking the {@link #connect(SocketAddress) connect} method upon
158 * while the connect operation is in progress
162 * while the connect operatio
380 public abstract boolean connect(SocketAddress remote) throws IOException; method in class:SocketChannel
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnectorFactory.java50 * #connect(JMXServiceURL) connect} method of this class. More
54 * {@link JMXConnector#connect(Map)}.</p>
209 * #connect(JMXServiceURL,Map) connect(serviceURL, null)}.</p>
212 * connect to.
215 * JMXConnector#connect connect} method has been called.
225 public static JMXConnector connect(JMXServiceURL serviceURL) method in class:JMXConnectorFactory
227 return connect(serviceUR
262 public static JMXConnector connect(JMXServiceURL serviceURL, method in class:JMXConnectorFactory
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DIIOPHelper.java116 public static void connect(Object stub, Object orb) method in class:IIOPHelper
120 proxy.connect(stub, orb);
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/protocol/iiop/
H A DIIOPProxyImpl.java73 public void connect(Object stub, Object orb) method in class:IIOPProxyImpl
76 ((Stub)stub).connect((ORB)orb);
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpChannel.java47 * its {@link #connect connect} methods. Once connected, the channel remains
53 * the remote socket may be initiated via the {@link #connect connect} method
130 * {@link #connect connect} and {@link #finishConnect
174 * open().connect(remote, maxOutStreams, maxInStreams);
194 * while the connect operation is in progress
198 * while the connect operation is in progress, thereby
221 ssc.connect(remot
444 public abstract boolean connect(SocketAddress remote) throws IOException; method in class:SctpChannel
509 public abstract boolean connect(SocketAddress remote, method in class:SctpChannel
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpChannelImpl.java75 public boolean connect(SocketAddress remote) throws IOException { method in class:SctpChannelImpl
80 public boolean connect(SocketAddress remote, int maxOutStreams, method in class:SctpChannelImpl
/openjdk7/jdk/test/java/net/Socket/
H A DOldImpl.java53 protected void connect(InetAddress address, int port){ method in class:OldImpl.FunkySocketImpl
56 protected void connect(String host, int port){ method in class:OldImpl.FunkySocketImpl
59 protected void connect(SocketAddress a,int b){ method in class:OldImpl.FunkySocketImpl
H A DSocketImplTest.java58 protected void connect(InetAddress address, int port){ method in class:SocketImplTest.MySocketImpl
61 protected void connect(String host, int port){ method in class:SocketImplTest.MySocketImpl
64 protected void connect(SocketAddress a, int t) throws IOException { method in class:SocketImplTest.MySocketImpl
/openjdk7/jdk/src/share/demo/management/JTop/
H A DJTop.java306 MBeanServerConnection server = connect(hostname, port);
340 private static MBeanServerConnection connect(String hostname, int port) { method in class:JTop
341 // Create an RMI connector client and connect it to
347 JMXConnector jmxc = JMXConnectorFactory.connect(url);
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample.java114 connect();
219 public void connect() { method in class:TableExample
235 //connect();
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/file/
H A DFileURLConnection.java76 * whatever was true when connect was called.
78 public void connect() throws IOException { method in class:FileURLConnection
110 connect();
188 connect();
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DAbstractDelegateHttpsURLConnection.java171 * Implements the HTTP protocol handler's "connect" method,
174 public void connect() throws IOException { method in class:AbstractDelegateHttpsURLConnection
/openjdk7/jdk/src/solaris/classes/sun/tools/attach/
H A DBsdVirtualMachine.java103 // Check that we can connect to the process
108 connect(s, path);
149 // connect to target VM
151 connect(s, p);
287 static native void connect(int fd, String path) throws IOException; method in class:BsdVirtualMachine
H A DLinuxVirtualMachine.java119 // Check that we can connect to the process
124 connect(s, path);
165 // connect to target VM
167 connect(s, p);
327 static native void connect(int fd, String path) throws IOException; method in class:LinuxVirtualMachine
/openjdk7/jdk/src/share/classes/java/net/
H A DAbstractPlainDatagramSocketImpl.java63 * flag set if the native connect() call not to be used
112 * @param address the remote InetAddress to connect to
115 protected void connect(InetAddress address, int port) throws SocketException { method in class:AbstractPlainDatagramSocketImpl
H A DDatagramSocket.java116 throw new IllegalArgumentException("connect: " + port);
119 throw new IllegalArgumentException("connect: null address");
121 checkAddress (address, "connect");
137 // old impls do not support connect/disconnect
143 getImpl().connect(address, port);
440 public void connect(InetAddress address, int port) { method in class:DatagramSocket
444 throw new Error("connect failed", se);
452 * behaves as if invoking {@link #connect(InetAddress,int) connect(InetAddress,int)}
458 * if the connect fail
470 public void connect(SocketAddress addr) throws SocketException { method in class:DatagramSocket
[all...]
H A DSocketImpl.java89 protected abstract void connect(String host, int port) throws IOException; method in class:SocketImpl
99 protected abstract void connect(InetAddress address, int port) throws IOException; method in class:SocketImpl
112 protected abstract void connect(SocketAddress address, int timeout) throws IOException; method in class:SocketImpl
125 * (a request to connect) to the <code>count</code> argument. If a
H A DSocksSocketImpl.java100 super.connect(new InetSocketAddress(host, port), timeout);
314 * connect to the SOCKS proxy and negotiate the access. If the proxy
315 * grants the connections, then the connect is successful and all
318 * @param endpoint the <code>SocketAddress</code> to connect to.
327 protected void connect(SocketAddress endpoint, int timeout) throws IOException { method in class:SocksSocketImpl
363 super.connect(epoint, remainingMillis(deadlineMillis));
386 super.connect(epoint, remainingMillis(deadlineMillis));
392 super.connect(epoint, remainingMillis(deadlineMillis));
428 throw new SocketException("Can't connect to SOCKS proxy:"
728 cmdsock.connect(ne
[all...]
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DSelectorTest.java252 private void connect() throws Exception { method in class:RemoteEntity
254 connected = sc.connect(server);
277 connect();
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DBaseSSLSocketImpl.java159 public final void connect(SocketAddress endpoint) throws IOException { method in class:BaseSSLSocketImpl
160 connect(endpoint, 0);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java205 * @throws UnknownHostException if trying to connect to an unknown host
208 public synchronized void connect() throws IOException { method in class:FtpURLConnection
250 http.connect();
271 http.connect();
292 ftp.connect(new InetSocketAddress(host, port));
294 ftp.connect(new InetSocketAddress(host, FtpClient.defaultPort()));
393 connect();
507 connect();
561 permission = new SocketPermission(urlhost, "connect");
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DJarURLConnection.java89 connect();
94 connect();
119 public void connect() throws IOException { method in class:JarURLConnection
150 connect();
177 connect();
193 connect();
208 connect();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramSocketAdaptor.java75 throw new IllegalArgumentException("connect: " + port);
77 throw new IllegalArgumentException("connect: null address");
81 dc.connect(remote);
97 public void connect(InetAddress address, int port) { method in class:DatagramSocketAdaptor
105 public void connect(SocketAddress remote) throws SocketException { method in class:DatagramSocketAdaptor

Completed in 1347 milliseconds

12345