Searched defs:errno (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixException.java38 private int errno; field in class:UnixException
41 UnixException(int errno) { argument
42 this.errno = errno;
47 this.errno = 0;
51 int errno() { method in class:UnixException
52 return errno;
55 void setError(int errno) { argument
56 this.errno = errno;
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzutil.c165 * errno. We define it as a global variable to simplify porting.
168 int errno = 0; variable
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>

Completed in 33 milliseconds