Home
last modified time | relevance | path

Searched refs:socketpair (Results 1 – 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DLinuxWatchService.java81 socketpair(sp); in LinuxWatchService()
191 private final int socketpair[]; field in LinuxWatchService.Poller
204 this.socketpair = sp; in Poller()
215 write(socketpair[1], address, 1); in wakeup()
315 UnixNativeDispatcher.close(socketpair[0]); in implCloseAll()
316 UnixNativeDispatcher.close(socketpair[1]); in implCloseAll()
341 nReady = poll(ifd, socketpair[0]); in run()
355 read(socketpair[0], address, BUFFER_SIZE); in run()
488 private static native void socketpair(int[] sv) throws UnixException; in socketpair() method in LinuxWatchService
/libcore/ojluni/src/main/native/
DEPollPort.c41 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) == -1) { in Java_sun_nio_ch_EPollPort_socketpair()
DLinuxWatchService.c122 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) == -1) { in Java_sun_nio_fs_LinuxWatchService_socketpair()
/libcore/ojluni/src/main/java/sun/nio/ch/
DEPollPort.java94 socketpair(sv); in EPollPort()
312 private static native void socketpair(int[] sv) throws IOException; in socketpair() method in EPollPort
/libcore/ojluni/src/main/java/java/net/
DPlainSocketImpl.java249 Libcore.os.socketpair(AF_UNIX, SOCK_STREAM, 0, fd1, fd2); in getMarkerFD()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java315 …@Override public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescr… in socketpair() method in BlockGuardOs
316 os.socketpair(domain, type, protocol, fd1, fd2); in socketpair()
DForwardingOs.java180 …public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2)… in socketpair() method in ForwardingOs
DOs.java167 …public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2)… in socketpair() method
DLinux.java254 …public native void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescript… in socketpair() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java546 …atic void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) t… in socketpair() method in Os
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2336 …int rc = throwIfMinusOne(env, "socketpair", TEMP_FAILURE_RETRY(socketpair(domain, type, protocol, … in Linux_socketpair()
2575 NATIVE_METHOD(Linux, socketpair, "(IIILjava/io/FileDescriptor;Ljava/io/FileDescriptor;)V"),