Searched defs:fd1 (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DPollSelectorImpl.java45 private int fd1; field in class:PollSelectorImpl
59 fd1 = (int) pipeFds;
61 pollWrapper.initInterrupt(fd0, fd1);
96 FileDispatcherImpl.closeIntFD(fd1);
98 fd1 = -1;
H A DPollArrayWrapper.java56 void initInterrupt(int fd0, int fd1) { argument
57 interruptFD = fd1;
/libcore/ojluni/src/main/native/
H A DLinuxWatchService.c134 (JNIEnv* env, jclass clazz, jint fd1, jint fd2)
139 ufds[0].fd = fd1;
133 Java_sun_nio_fs_LinuxWatchService_poll(JNIEnv* env, jclass clazz, jint fd1, jint fd2) argument
H A Dlinux_close.cpp56 * fd1 < 0 => close(fd2)
57 * fd1 >= 0 => dup2(fd1, fd2)
61 static int closefd(int fd1, int fd2) { argument
71 if (fd1 < 0) {
74 rv = dup2(fd1, fd2);
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DLinuxWatchService.java493 private static native int poll(int fd1, int fd2) throws UnixException; argument
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java318 @Override public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { argument
319 os.socketpair(domain, type, protocol, fd1, fd2);
321 tagSocket(fd1);
H A DForwardingOs.java179 public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { os.socketpair(domain, type, protocol, fd1, fd2); } argument
H A DLinux.java253 public native void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException; argument
H A DOs.java166 public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java554 public static void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { Libcore.os.socketpair(domain, type, protocol, fd1, fd2); } argument

Completed in 156 milliseconds