Home
last modified time | relevance | path

Searched refs:AF_UNIX (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DPlainSocketImpl.java43 import static android.system.OsConstants.AF_UNIX;
265 Libcore.os.socketpair(AF_UNIX, SOCK_STREAM, 0, fd1, fd2); in getMarkerFD()
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java141 final FileDescriptor fd = Os.socket(AF_UNIX, SOCK_STREAM, 0); in testUnixDomainSocket_unnamed()
149 final FileDescriptor serverFd = Os.socket(AF_UNIX, SOCK_STREAM, 0); in checkUnixDomainSocket()
185 FileDescriptor clientFd = Os.socket(AF_UNIX, SOCK_STREAM, 0); in checkUnixDomainSocket()
512 return Os.socket(AF_UNIX, SOCK_DGRAM, 0); in makeUnixSocket()
1465 Os.socketpair(AF_UNIX, SOCK_STREAM, 0, null, new FileDescriptor()); in testSocketpairNullFileDescriptor1()
1473 Os.socketpair(AF_UNIX, SOCK_STREAM, 0, new FileDescriptor(), null); in testSocketpairNullFileDescriptor2()
1481 Os.socketpair(AF_UNIX, SOCK_STREAM, 0, null, null); in testSocketpairNullFileDescriptorBoth()
1501 InetAddress inetAddress = Os.inet_pton(AF_UNIX, srcAddress); in testInetPtonInvalidFamily()
/libcore/luni/src/main/java/android/system/
DOsConstants.java121 public static final int AF_UNIX = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp373 if (ss.ss_family != AF_UNIX) { in getUnixSocketPath()
410 } else if (ss.ss_family == AF_UNIX) { in makeSocketAddress()
681 un_addr->sun_family = AF_UNIX; in javaUnixSocketAddressToSockaddr()
Dandroid_system_OsConstants.cpp71 initConstant(env, c, "AF_UNIX", AF_UNIX); in OsConstants_initConstants()