Searched refs:SO_TIMEOUT (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DSocketOptions.java259 public final static int SO_TIMEOUT = 0x1006; field in interface:SocketOptions
H A DAbstractPlainDatagramSocketImpl.java259 case SO_TIMEOUT:
261 throw new SocketException("bad argument for SO_TIMEOUT");
324 case SO_TIMEOUT:
H A DServerSocket.java619 * Enable/disable SO_TIMEOUT with the specified timeout, in
637 getImpl().setOption(SocketOptions.SO_TIMEOUT, new Integer(timeout));
641 * Retrieve setting for SO_TIMEOUT. 0 returns implies that the
643 * @return the SO_TIMEOUT value
651 Object o = getImpl().getOption(SocketOptions.SO_TIMEOUT);
H A DAbstractPlainSocketImpl.java46 /* instance variable for SO_TIMEOUT */
222 case SO_TIMEOUT:
224 throw new SocketException("Bad parameter for SO_TIMEOUT");
275 if (opt == SO_TIMEOUT) {
670 * Return the current value of SO_TIMEOUT
H A DDatagramSocket.java845 /** Enable/disable SO_TIMEOUT with the specified timeout, in
863 getImpl().setOption(SocketOptions.SO_TIMEOUT, new Integer(timeout));
867 * Retrieve setting for SO_TIMEOUT. 0 returns implies that the
870 * @return the setting for SO_TIMEOUT
880 Object o = getImpl().getOption(SocketOptions.SO_TIMEOUT);
H A DSocket.java1080 * Enable/disable SO_TIMEOUT with the specified timeout, in
1101 getImpl().setOption(SocketOptions.SO_TIMEOUT, new Integer(timeout));
1105 * Returns setting for SO_TIMEOUT. 0 returns implies that the
1107 * @return the setting for SO_TIMEOUT
1116 Object o = getImpl().getOption(SocketOptions.SO_TIMEOUT);
/openjdk7/jdk/src/windows/classes/java/net/
H A DDualStackPlainSocketImpl.java180 if (opt == SO_TIMEOUT) { // timeout implemented through select.

Completed in 66 milliseconds