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

/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DEPoll.c87 jint epfd, jlong address, jint numfds)
92 RESTARTABLE(epoll_wait(epfd, events, numfds, -1), res);
86 Java_sun_nio_ch_EPoll_epollWait(JNIEnv *env, jclass c, jint epfd, jlong address, jint numfds) argument
H A DEPollArrayWrapper.c45 iepoll(int epfd, struct epoll_event *events, int numfds, jlong timeout) argument
56 int res = epoll_wait(epfd, events, numfds, timeout);
134 jlong address, jint numfds,
141 RESTARTABLE(epoll_wait(epfd, events, numfds, timeout), res);
143 res = iepoll(epfd, events, numfds, timeout);
133 Java_sun_nio_ch_EPollArrayWrapper_epollWait(JNIEnv *env, jobject this, jlong address, jint numfds, jlong timeout, jint epfd) argument
H A DPollArrayWrapper.c73 jlong address, jint numfds,
82 RESTARTABLE (poll(a, numfds, timeout), err);
84 err = ipoll(a, numfds, timeout);
72 Java_sun_nio_ch_PollArrayWrapper_poll0(JNIEnv *env, jobject this, jlong address, jint numfds, jlong timeout) argument
H A DDevPollArrayWrapper.c155 jlong address, jint numfds,
163 a.dp_nfds = numfds;
154 Java_sun_nio_ch_DevPollArrayWrapper_poll0(JNIEnv *env, jobject this, jlong address, jint numfds, jlong timeout, jint wfd) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPoll.java112 static native int epollWait(int epfd, long pollAddress, int numfds) argument
H A DPollArrayWrapper.java116 int poll(int numfds, int offset, long timeout) { argument
118 numfds, timeout);
125 private native int poll0(long pollAddress, int numfds, long timeout); argument
H A DEPollArrayWrapper.java326 private native int epollWait(long pollAddress, int numfds, long timeout, argument
H A DDevPollArrayWrapper.java316 private native int poll0(long pollAddress, int numfds, long timeout, argument
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsSelectorImpl.c54 jlong pollAddress, jint numfds,
81 for (i = 0; i < numfds; i++) {
109 for (i = 0; i < numfds; i++) {
53 Java_sun_nio_ch_WindowsSelectorImpl_00024SubSelector_poll0(JNIEnv *env, jobject this, jlong pollAddress, jint numfds, jintArray returnReadFds, jintArray returnWriteFds, jintArray returnExceptFds, jlong timeout) argument
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsSelectorImpl.java310 private native int poll0(long pollAddress, int numfds, argument

Completed in 211 milliseconds