Home | History | Annotate | Download | only in fs

Lines Matching defs:errno

38     private int errno;
41 UnixException(int errno) {
42 this.errno = errno;
47 this.errno = 0;
51 int errno() {
52 return errno;
55 void setError(int errno) {
56 this.errno = errno;
64 return Util.toString(UnixNativeDispatcher.strerror(errno()));
78 // created with message rather than errno
83 if (errno() == UnixConstants.EACCES)
85 if (errno() == UnixConstants.ENOENT)
87 if (errno() == UnixConstants.EEXIST)