Home
last modified time | relevance | path

Searched refs:getsockoptInt (Results 1 – 10 of 10) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
DIoBridge.java270 int connectError = Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_ERROR); in isConnected()
312 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_MULTICAST_IF); in getSocketOptionErrno()
318 return !booleanFromInt(Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP)); in getSocketOptionErrno()
322 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS); in getSocketOptionErrno()
326 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS); in getSocketOptionErrno()
330 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_TCLASS); in getSocketOptionErrno()
332 return booleanFromInt(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_BROADCAST)); in getSocketOptionErrno()
334 return booleanFromInt(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_KEEPALIVE)); in getSocketOptionErrno()
342 return booleanFromInt(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_OOBINLINE)); in getSocketOptionErrno()
344 return Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_RCVBUF); in getSocketOptionErrno()
[all …]
DBlockGuardOs.java114 return isInetDomain(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_DOMAIN)); in isInetSocket()
127 return Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_PROTOCOL) == IPPROTO_UDP; in isUdpSocket()
DForwardingOs.java127 …public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return … in getsockoptInt() method in ForwardingOs
DOs.java103 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; in getsockoptInt() method
DLinux.java101 public native int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; in getsockoptInt() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java266 …public static int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { … in getsockoptInt() method in Os
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1054 int v = Os.getsockoptInt(fd, OsConstants.IPPROTO_TCP, OsConstants.TCP_USER_TIMEOUT); in test_socket_tcpUserTimeout_setAndGet()
1059 int actualValue = Os.getsockoptInt(fd, OsConstants.IPPROTO_TCP, in test_socket_tcpUserTimeout_setAndGet()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DDatagramSocketTest.java108 boolean multicastAllEnabled = Libcore.os.getsockoptInt(ds.getFileDescriptor$(), in test_Constructor()
/libcore/mmodules/core_platform_api/api/legacy_platform/
Dcurrent-api.txt49 …method public static int getsockoptInt(java.io.FileDescriptor, int, int) throws android.system.Err…
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2632 NATIVE_METHOD(Linux, getsockoptInt, "(Ljava/io/FileDescriptor;II)I"),