Searched refs:errno (Results 26 - 50 of 153) sorted by relevance

1234567

/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DNet.c166 return handleSocketError(env, errno);
226 handleSocketError(env, errno);
234 handleSocketError(env, errno);
253 if (errno == EINPROGRESS) {
255 } else if (errno == EINTR) {
258 return handleSocketError(env, errno);
277 if (errno == ECONNRESET) {
286 handleSocketError(env, errno);
290 handleSocketError(env, errno);
312 if (errno
[all...]
H A DServerSocketChannelImpl.c94 if (errno != ECONNABORTED) {
102 if (errno == EAGAIN)
104 if (errno == EINTR)
H A DDatagramDispatcher.c49 if (result < 0 && errno == ECONNREFUSED) {
75 if (result < 0 && errno == ECONNREFUSED) {
89 if (result < 0 && errno == ECONNREFUSED) {
114 if (result < 0 && errno == ECONNREFUSED) {
H A DSolarisEventPort.c66 if (errno != EBADFD)
81 if (errno != ENOENT)
129 if (errno != ETIME && errno != EINTR)
H A DPollArrayWrapper.c38 } while((_result == -1) && (errno == EINTR)); \
54 if (res < 0 && errno == EINTR) {
H A DIOUtil.c116 if ((n < 0) && (errno != EAGAIN))
153 else if (errno == EAGAIN)
155 else if (errno == EINTR)
188 else if (errno == EAGAIN)
190 else if (errno == EINTR)
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c29 #include <errno.h>
65 errno = 0;
67 if (errno) {
81 errno = 0;
83 if (errno) {
94 errno = 0;
96 if (errno) {
163 if (ret == -1 && errno == ECHILD) {
185 switch (errno) {
196 print_debug("waitpid() failed. Unexpected error %d\n",errno);
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DLinuxWatchService.c77 throwUnixException(env, errno);
91 throwUnixException(env, errno);
102 throwUnixException(env, errno);
123 throwUnixException(env, errno);
146 if (errno == EINTR) {
149 throwUnixException(env, errno);
/openjdk7/jdk/src/solaris/native/java/net/
H A DSocketInputStream.c27 #include <errno.h>
109 if (errno == EBADF) {
131 switch (errno) {
H A DPlainSocketImpl.c26 #include <errno.h>
210 NET_ThrowNew(env, errno, "can't create socket");
220 NET_ThrowNew(env, errno, "cannot set IPPROTO_IPV6");
237 NET_ThrowNew(env, errno, "cannot set SO_REUSEADDR");
303 if (connect_rv == JVM_IO_ERR && errno == EINPROGRESS ) {
331 if (errno == EINTR) {
343 connect_rv = errno;
347 /* restore errno */
348 errno = connect_rv;
372 if (errno !
[all...]
/openjdk7/jdk/src/solaris/native/sun/net/sdp/
H A DSdpSupport.c28 #include <errno.h>
47 } while((_result == -1) && (errno == EINTR)); \
77 errno = EPROTONOSUPPORT;
/openjdk7/jdk/src/windows/back/
H A Dlinker_md.c34 #include <errno.h>
94 if (errno != 0) {
96 const char *s = strerror(errno);
/openjdk7/jdk/src/windows/native/java/io/
H A Dcanonicalize_md.c39 #include <errno.h>
61 errno = ENAMETOOLONG;
66 errno = ENAMETOOLONG;
85 errno = ENAMETOOLONG;
90 errno = ENAMETOOLONG;
239 errno = EINVAL;
282 errno = EINVAL;
292 errno = EINVAL;
343 errno = ENAMETOOLONG;
396 errno
[all...]
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_proc.c29 #include <errno.h>
66 errno = 0;
68 if (errno) {
82 errno = 0;
84 if (errno) {
95 errno = 0;
97 if (errno) {
126 errno = 0;
129 return (errno == 0)? true: false;
167 switch (errno) {
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp101 errno = status;
132 if ((_cmd) < 0 && errno == EINTR \
151 } while((_result == OS_ERR) && (errno == EINTR))
159 } while((_result == OS_ERR) && (errno == EINTR))
166 } while((_result == OS_ERR) && (errno == EINTR))
197 } while((_result == OS_ERR) && (errno == EINTR)); \
205 } while((_result == OS_ERR) && (errno == EINTR)); \
220 } while((_result == OS_ERR) && (errno == EINTR)); \
H A Djvm_solaris.h74 #include <errno.h>
/openjdk7/hotspot/src/os/bsd/vm/
H A Djvm_bsd.h96 #include <errno.h>
/openjdk7/hotspot/src/os/linux/vm/
H A Djvm_linux.h77 #include <errno.h>
/openjdk7/jdk/src/macosx/javavm/export/
H A Djvm_md.h62 #include <errno.h>
/openjdk7/jdk/src/solaris/javavm/export/
H A Djvm_md.h67 #include <errno.h>
/openjdk7/jdk/src/solaris/npt/
H A Dnpt_md.h33 #include <errno.h>
/openjdk7/jdk/src/windows/javavm/export/
H A Djvm_md.h89 #include <errno.h>
/openjdk7/jdk/src/windows/native/sun/tracing/dtrace/
H A Djvm_symbols_md.c29 #include <errno.h>
/openjdk7/jdk/src/windows/npt/
H A Dnpt_md.h34 #include <errno.h>
/openjdk7/jdk/src/share/native/sun/management/
H A Dmanagement.c59 sprintf(errmsg, "errno: %d error: %s\n", errno, msg);

Completed in 88 milliseconds

1234567