Searched refs:getsockoptInt (Results 1 – 10 of 10) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | IoBridge.java | 270 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 …]
|
D | BlockGuardOs.java | 114 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()
|
D | ForwardingOs.java | 127 …public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return … in getsockoptInt() method in ForwardingOs
|
D | Os.java | 103 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; in getsockoptInt() method
|
D | Linux.java | 101 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 | 266 …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 | 1054 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/ |
D | DatagramSocketTest.java | 108 boolean multicastAllEnabled = Libcore.os.getsockoptInt(ds.getFileDescriptor$(), in test_Constructor()
|
/libcore/mmodules/core_platform_api/api/legacy_platform/ |
D | current-api.txt | 49 …method public static int getsockoptInt(java.io.FileDescriptor, int, int) throws android.system.Err…
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2632 NATIVE_METHOD(Linux, getsockoptInt, "(Ljava/io/FileDescriptor;II)I"),
|