Searched defs:optionValue (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/windows/classes/java/net/
H A DDualStackPlainDatagramSocketImpl.java165 int optionValue = 0;
171 optionValue = ((Integer)val).intValue();
182 optionValue = ((Boolean)val).booleanValue() ? 1 : 0;
188 socketSetIntOption(nativefd, opt, optionValue);
288 int optionValue) throws SocketException;
287 socketSetIntOption(int fd, int cmd, int optionValue) argument
H A DDualStackPlainSocketImpl.java184 int optionValue = 0;
197 optionValue = on ? 1 : 0;
202 optionValue = ((Integer)value).intValue();
206 optionValue = ((Integer)value).intValue();
208 optionValue = -1;
215 setIntOption(nativefd, opt, optionValue);
292 static native void setIntOption(int fd, int cmd, int optionValue) throws SocketException; argument

Completed in 52 milliseconds