Home
last modified time | relevance | path

Searched refs:SO_RCVBUF (Results 1 – 9 of 9) sorted by relevance

/libcore/luni/src/test/java/libcore/java/net/
DOldSocketTestCase.java30 public static final int SO_RCVBUF = 3; field in OldSocketTestCase
61 case SO_RCVBUF: in getOptionIsSupported()
136 case SO_RCVBUF: in getSocketOptionString()
DOldSocketTest.java343 ensureExceptionThrownIfOptionIsUnsupportedOnOS(SO_RCVBUF); in test_getReceiveBufferSize()
345 handleException(e, SO_RCVBUF); in test_getReceiveBufferSize()
512 ensureExceptionThrownIfOptionIsUnsupportedOnOS(SO_RCVBUF); in test_setReceiveBufferSizeI()
514 handleException(e, SO_RCVBUF); in test_setReceiveBufferSizeI()
/libcore/luni/src/main/java/java/net/
DSocketOptions.java122 public static final int SO_RCVBUF = 4098; field
DServerSocket.java417 impl.setOption(SocketOptions.SO_RCVBUF, Integer.valueOf(size)); in setReceiveBufferSize()
425 return ((Integer) impl.getOption(SocketOptions.SO_RCVBUF)).intValue(); in getReceiveBufferSize()
DDatagramSocket.java230 return ((Integer) impl.getOption(SocketOptions.SO_RCVBUF)).intValue(); in getReceiveBufferSize()
347 impl.setOption(SocketOptions.SO_RCVBUF, Integer.valueOf(size)); in setReceiveBufferSize()
DSocket.java442 return (Integer) impl.getOption(SocketOptions.SO_RCVBUF); in getReceiveBufferSize()
515 impl.setOption(SocketOptions.SO_RCVBUF, Integer.valueOf(size)); in setReceiveBufferSize()
/libcore/luni/src/main/java/libcore/io/
DIoBridge.java294 case SocketOptions.SO_RCVBUF: in getSocketOptionErrno()
295 return Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_RCVBUF); in getSocketOptionErrno()
372 case SocketOptions.SO_RCVBUF: in setSocketOptionErrno()
373 Libcore.os.setsockoptInt(fd, SOL_SOCKET, SO_RCVBUF, (Integer) value); in setSocketOptionErrno()
/libcore/luni/src/main/java/android/system/
DOsConstants.java425 public static final int SO_RCVBUF = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp482 initConstant(env, c, "SO_RCVBUF", SO_RCVBUF); in OsConstants_initConstants()