Searched refs:socketpair (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxWatchService.java65 // create socketpair used in the close mechanism
69 socketpair(sp);
178 // socketpair used to shutdown polling thread
179 private final int socketpair[]; field in class:LinuxWatchService.Poller
189 this.socketpair = sp;
196 // write to socketpair to wakeup polling thread
198 write(socketpair[1], address, 1);
296 UnixNativeDispatcher.close(socketpair[0]);
297 UnixNativeDispatcher.close(socketpair[1]);
311 nReady = poll(ifd, socketpair[
452 private static native void socketpair(int[] sv) throws UnixException; method in class:LinuxWatchService
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DEPollPort.c41 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) == -1) {
42 JNU_ThrowIOExceptionWithLastError(env, "socketpair failed");
H A DKQueuePort.c41 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) == -1) {
42 JNU_ThrowIOExceptionWithLastError(env, "socketpair failed");
H A DFileDispatcherImpl.c63 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) < 0) {
64 JNU_ThrowIOExceptionWithLastError(env, "socketpair failed");
H A DSctpNet.c154 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) < 0) {
155 JNU_ThrowIOExceptionWithLastError(env, "socketpair failed");
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPollPort.java94 socketpair(sv);
134 // write byte to socketpair to force wakeup
157 * write to the one end of the socketpair to wakeup any polling threads.
312 private static native void socketpair(int[] sv) throws IOException; method in class:EPollPort
H A DKQueuePort.java91 socketpair(sv);
132 // write byte to socketpair to force wakeup
155 * write to the one end of the socketpair to wakeup any polling threads.
320 private static native void socketpair(int[] sv) throws IOException; method in class:KQueuePort
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DLinuxWatchService.c122 if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) == -1) {
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp56 // sockets (socketpair) is created in the enqueue function and the file
326 if (socketpair(PF_UNIX, SOCK_STREAM, 0, s) < 0) {
/openjdk7/jdk/src/solaris/native/java/net/
H A DPlainSocketImpl.c103 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sv) == -1) {

Completed in 312 milliseconds