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

12345

/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp1087 bool networkStream::connect(const char *ip, short port) { function in class:networkStream
1104 int result = os::connect(_socket, (struct sockaddr*)&server, sizeof(struct sockaddr_in));
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DPKCS11.java98 * The PKCS#11 module to connect to. This is the PKCS#11 driver of the token;
137 connect(pkcs11ModulePath, functionListName);
180 private native void connect(String pkcs11ModulePath, String functionListName) throws IOException; method in class:PKCS11
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketImpl.java395 * @param host name of the host with which to connect
407 connect(socketAddress, 0);
426 connect(socketAddress, 0);
435 * @param host name of the host with which to connect
451 connect(socketAddress, 0);
474 connect(socketAddress, 0);
506 * socket. The java.net package will connect it, either when the
507 * connect() call is made by the application. This instance is
606 public void connect(SocketAddress endpoint, int timeout) method in class:SSLSocketImpl
618 super.connect(endpoin
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DProxyClient.java118 // Create an RMI connector client and connect it to
310 void connect(boolean requireSSL) { method in class:ProxyClient
355 jmxc.connect(env);
357 this.jmxc = JMXConnectorFactory.connect(jmxUrl, env);
368 jmxc.connect(env);
370 this.jmxc = JMXConnectorFactory.connect(jmxUrl, env);
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java599 // This means we used an Unresolved address to connect in
610 // Let's parse the response String to get the IP & port to connect
666 s.connect(dest, connectTimeout);
669 s.connect(dest, defaultConnectTimeout);
671 s.connect(dest);
825 * are established by having the client connect to the server.
850 * @param timeout the timeout value, in milliseconds, to use for the connect
863 * @return the value, in milliseconds, of the current connect timeout.
911 * @param dest the <code>InetSocketAddress</code> to connect to.
950 s.connect(des
998 public sun.net.ftp.FtpClient connect(SocketAddress dest) throws sun.net.ftp.FtpProtocolException, IOException { method in class:FtpClient
1008 public sun.net.ftp.FtpClient connect(SocketAddress dest, int timeout) throws sun.net.ftp.FtpProtocolException, IOException { method in class:FtpClient
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java229 // Needed here to implement connect/disconnect
831 // Note that we connect this if we have not already done so.
1614 /** This is the implementation of the public API used to connect
1617 public synchronized void connect(org.omg.CORBA.Object servant) method in class:ORBImpl
1625 getTOAFactory().getTOA( codebase ).connect( servant ) ;
H A DORBSingleton.java373 public void connect(org.omg.CORBA.Object servant) { method in class:ORBSingleton
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapCtx.java165 static final String BIND_CONTROLS = "java.naming.ldap.control.connect";
180 // Timeout for socket connect
182 "com.sun.jndi.ldap.connect.timeout";
189 private static final String ENABLE_POOL = "com.sun.jndi.ldap.connect.pool";
316 connect(false);
2329 // Set the connect timeout
2461 * Sets the connect timeout value
2635 connect(startTLS);
2648 connect(startTLS);
2657 private void connect(boolea method in class:LdapCtx
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java363 // to ensure connection to a db call connect now
366 conn = connect();
624 // connect method as protected.
628 protected Connection connect() throws SQLException { method in class:JdbcRowSetImpl
654 throw new SQLException(resBundle.handleGetObject("jdbcrowsetimpl.connect").toString());
674 conn = connect();
4016 Connection con = connect();
4081 conn = connect();
4378 * <code>RowSet</code> object to connect to a database. The <code>RowSet</code>
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java849 public void connect() throws IOException { method in class:HttpURLConnection
905 * connect to instProxy; raise exception if failed
1091 connect();
1300 connect();
1559 * method will disconnect() and re-connect us to the new
2395 connect();
2398 connect();
2399 /* Even after a connect() call, http variable still can be
2860 * Returns setting for connect timeout.
2865 * @return an <code>int</code> that indicates the connect timeou
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp6770 int os::connect(int fd, struct sockaddr *him, socklen_t len) { function in class:os
6772 INTERRUPTIBLE_NORESTART(::connect(fd, him, len), _result,\
6780 /* restarting a connect() changes its errno semantics */
6781 INTERRUPTIBLE(::connect(fd, him, len), _result,\
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4980 int os::connect(int fd, struct sockaddr* him, socklen_t len) { function in class:os
4981 return ::connect(fd, him, len);

Completed in 2460 milliseconds

12345