Searched refs:errno (Results 76 - 100 of 153) sorted by relevance

1234567

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzutil.h53 * errno. We define it as a global variable to simplify porting.
57 # define errno z_errno macro
59 extern int errno;
62 # include <errno.h>
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixChannelFactory.java227 if (!flags.create || x.errno() != ENOENT)
262 if (flags.createNew && (x.errno() == EISDIR)) {
267 if (!followLinks && (x.errno() == ELOOP)) {
H A DLinuxUserDefinedFileAttributeView.java112 if (x.errno() == ERANGE && size < 32*1024) {
192 String msg = (x.errno() == ERANGE) ?
295 if (x.errno() == ERANGE && size < 32*1024) {
H A DLinuxWatchService.java260 if (x.errno() == ENOSPC) {
317 if (x.errno() != EAGAIN)
330 if (x.errno() != UnixConstants.EAGAIN)
H A DLinuxFileStore.java105 if (e.errno() == UnixConstants.ENODATA)
H A DUnixSecureDirectoryStream.java123 if (x.errno() == UnixConstants.ENOTDIR)
203 if (x.errno() == EEXIST || x.errno() == ENOTEMPTY) {
256 if (x.errno() == EXDEV) {
H A DSolarisAclFileAttributeView.java321 if ((x.errno() == ENOSYS) || !isAclsEnabled(fd)) {
352 if ((x.errno() == ENOSYS) || !isAclsEnabled(fd)) {
356 if (x.errno() == EINVAL && (n < 3))
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c26 #include <errno.h>
179 #define FAIL_IF_NOT_ENOBUFS if (errno != ENOBUFS) return -1
289 sprintf(errmsg, "errno: %d, error: %s\n", errno, defaultDetail);
295 NET_ThrowNew(env, errno, msg);
313 errno = errorNumber;
1395 if ((ret == 0) || (ret == -1 && errno != ENOBUFS))
1553 errno = EADDRNOTAVAIL;
1606 int en = errno;
1613 errno
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/core/native/
H A DSubclassing.m30 #include <errno.h>
189 fprintf(stderr, "mmap failed with errno: %d", errno);
205 fprintf(stderr, "mprotect failed with errno: %d", errno);
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m41 #include <errno.h>
282 errno = 0;
299 errno = 0;
/openjdk7/jdk/src/solaris/native/java/lang/
H A Djava_props_md.c43 #include <errno.h>
351 if (stat(buf, &statbuf) == -1 && errno == ENOENT) {
549 errno = 0;
/openjdk7/jdk/src/solaris/native/java/util/
H A DTimeZone_md.c31 #include <errno.h>
381 errno = ENOMEM;
390 errno = ENOMEM;
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp36 # include <errno.h>
163 if (errno == ENOENT) {
168 strerror(errno));
339 fail_continue("Unable to remap shared readonly space (errno=%d).", errno);
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp400 if (errno == EBUSY) {
513 if (errno != EINTR) return -1;
648 if (errno) {
683 if (errno) {
H A Dos_solaris.cpp77 # include <errno.h>
1637 "(%s)", strerror(errno)));
1652 if (errno == ENOMEM) {
1656 "(%s)", strerror(errno)));
1808 fatal(err_msg("os::javaTimeMillis: gettimeofday (%s)", strerror(errno)));
2218 errno = ENAMETOOLONG;
2577 if (errno == 0) return 0;
2579 const char *s = ::strerror(errno);
2650 } else if (errno == EINTR) {
2652 } else if (errno
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DBsdNativeDispatcher.c104 throwUnixException(env, errno);
129 throwUnixException(env, errno);
/openjdk7/jdk/src/windows/demo/jvmti/hprof/
H A Dhprof_md.c352 if (errno != 0) {
357 s = strerror(errno);
/openjdk7/jdk/src/share/native/java/util/zip/
H A DZipFile.c33 #include <errno.h>
121 } else if (errno == ENOMEM) {
328 sprintf(errmsg, "errno: %d, error: %s\n",
329 errno, "Error reading ZIP file");
/openjdk7/hotspot/src/os/posix/vm/
H A Dos_posix.cpp83 return errno;
/openjdk7/jdk/src/macosx/native/sun/nio/ch/
H A DKQueueArrayWrapper.c151 if (errno == EINTR) {
/openjdk7/jdk/src/share/back/
H A Dlog_messages.c29 #include <errno.h>
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions_gcc.hpp65 #include <errno.h>
H A DglobalDefinitions_sparcWorks.hpp66 # include <errno.h>
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Mlib.c31 #include <errno.h>
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DNet.c454 handleSocketError(env, errno);
466 handleSocketError(env, errno);
512 handleSocketError(env, errno);
525 handleSocketError(env, errno);

Completed in 926 milliseconds

1234567