Searched refs:getsockoptInt (Results 1 – 10 of 10) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | IoBridge.java | 271 int connectError = Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_ERROR); in isConnected() 313 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_MULTICAST_IF); in getSocketOptionErrno() 319 return !booleanFromInt(Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP)); in getSocketOptionErrno() 323 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS); in getSocketOptionErrno() 327 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS); in getSocketOptionErrno() 331 return Libcore.os.getsockoptInt(fd, IPPROTO_IPV6, IPV6_TCLASS); in getSocketOptionErrno() 333 return booleanFromInt(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_BROADCAST)); in getSocketOptionErrno() 335 return booleanFromInt(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_KEEPALIVE)); in getSocketOptionErrno() 343 return booleanFromInt(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_OOBINLINE)); in getSocketOptionErrno() 345 return Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_RCVBUF); in getSocketOptionErrno() [all …]
|
D | BlockGuardOs.java | 112 return isInetDomain(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_DOMAIN)); in isInetSocket() 125 return Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_PROTOCOL) == IPPROTO_UDP; in isUdpSocket()
|
D | ForwardingOs.java | 129 …public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return … in getsockoptInt() method in ForwardingOs
|
D | Os.java | 105 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; in getsockoptInt() method
|
D | Linux.java | 103 public native int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; in getsockoptInt() method in Linux
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 269 …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/ |
D | OsTest.java | 955 int v = Os.getsockoptInt(fd, OsConstants.IPPROTO_TCP, OsConstants.TCP_USER_TIMEOUT); in test_socket_tcpUserTimeout_setAndGet() 960 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/ |
D | DatagramSocketTest.java | 108 boolean multicastAllEnabled = Libcore.os.getsockoptInt(ds.getFileDescriptor$(), in test_Constructor()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2630 NATIVE_METHOD(Linux, getsockoptInt, "(Ljava/io/FileDescriptor;II)I"),
|
/libcore/mmodules/core_platform_api/api/platform/ |
D | current-api.txt | 96 …method public static int getsockoptInt(java.io.FileDescriptor, int, int) throws android.system.Err…
|