Searched defs:errno (Results 1 - 25 of 98) sorted by last modified time

1234

/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_client.c38 #include <sys/errno.h>
224 nfs4_purge_stale_fh(int errno, vnode_t *vp, cred_t *cr) argument
231 if (errno != ESTALE)
237 rp->r_error = errno;
/illumos-gate/usr/src/boot/lib/libstand/
H A Dglobals.c35 int errno; /* our old friend */ variable
H A Dnfs.c83 n_long errno; member in struct:nfs_read_repl
91 n_long errno; member in struct:nfs_readlnk_repl
163 uint32_t errno; member in struct:nfsv3_readdir_repl
227 n_long errno; member in struct:repl
259 /* errno was set by rpc_call */
260 return (errno);
264 if (repl->errno)
265 return (ntohl(repl->errno));
284 n_long errno; member in struct:repl
321 return (errno); /* XX
827 uint32_t errno; member in struct:repl
887 uint32_t errno; member in struct:repl
955 uint32_t errno; member in struct:repl
1019 uint32_t errno; member in struct:repl
[all...]
/illumos-gate/usr/src/cmd/auditreduce/
H A Dtoken.c730 * errno adr_int32
736 int32_t errno; local
739 adrm_int32(adr, &errno, 1);
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_xml.c43 #include <errno.h>
556 errno = 0;
558 if (errno != 0 || endptr == (char *)value || *endptr)
562 (errno) ? strerror(errno) :
566 errno = 0;
568 if (errno != 0 || *endptr)
572 (errno) ? strerror(errno) : "Illegal character");
1089 errno
3457 errno); local
[all...]
/illumos-gate/usr/src/boot/sys/sys/
H A Derrno.h34 * @(#)errno.h 8.5 (Berkeley) 1/21/94
46 #define errno (* __error()) macro
184 #define ELAST 96 /* Must be equal largest errno */
/illumos-gate/usr/src/cmd/pyzfs/
H A Dpyzfs.py37 import errno namespace
73 import errno namespace
76 if e.errno == errno.EPIPE:
/illumos-gate/usr/src/lib/pyzfs/common/
H A Dallow.py35 import errno namespace
252 raise zfs.util.ZFSError(errno.EINVAL, permname,
H A Ddataset.py31 import errno namespace
122 e = zfs.util.ZFSError(errno.EINVAL,
216 raise zfs.util.ZFSError(errno.EINVAL,
223 if not recursive or e.errno != errno.ENOENT:
233 if e.errno != errno.ENOENT:
H A Dholds.py30 import errno namespace
75 raise zfs.util.ZFSError(errno.ENOENT, _("no matching datasets"))
H A Duserspace.py32 import errno namespace
H A Dutil.py29 import errno namespace
35 errno.ECANCELED = 47
36 errno.ENOTSUP = 48
62 errno -- the error number (eg, from ioctl(2))."""
64 __slots__ = "why", "task", "errno"
69 eno -- the error number (errno)
74 self.errno = eno
89 errno.EPERM: _("permission denied"),
90 errno.ECANCELED:
92 errno
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dzutil.c144 * errno. We define it as a global variable to simplify porting.
147 int errno = 0; variable
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Derrno.c36 int errno; local
40 errno = EPERM;
44 errno = EOVERFLOW;
49 errno = EIO;
53 errno = EINVAL;
57 errno = ESTALE;
61 errno = ENXIO;
65 errno = ENOENT;
69 errno = ENOMEM;
73 errno
[all...]
/illumos-gate/usr/src/lib/libc/inc/
H A Dthr_uberdata.h45 #include <errno.h>
95 * Special libc-private access to errno.
96 * We do this so that references to errno do not invoke the dynamic linker.
98 #undef errno macro
99 #define errno (*curthread->ul_errnop) macro
623 int ul_errno; /* per-thread errno */
624 int *ul_errnop; /* pointer to errno or self->ul_errno */
1088 int ul_errno; /* per-thread errno */
1089 caddr32_t ul_errnop; /* pointer to errno or self->ul_errno */
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dthr.c48 #undef errno macro
49 extern int errno;
1401 self->ul_errnop = &errno;
/illumos-gate/usr/src/man/man3c/
H A DMakefile774 errno.3c \
2006 errno.3c := LINKSRC = perror.3c
/illumos-gate/usr/src/man/man3head/
H A DMakefile31 errno.h.3head \
120 errno.3head \
209 errno.3head := LINKSRC = errno.h.3head
/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca.c2453 uint64_t ena, int errno, char *mess, ...)
2542 dca_done(reqp, errno);
2452 dca_failure(dca_t *dca, ddi_fault_location_t loc, dca_fma_eclass_t index, uint64_t ena, int errno, char *mess, ...) argument
/illumos-gate/usr/src/cmd/zpool/
H A Dzpool_main.c34 #include <errno.h>
697 vdev, strerror(errno));
977 if ((dirp = opendir(buf)) == NULL && errno != ENOENT) {
979 "%s\n"), buf, strerror(errno));
2042 errno = 0;
2044 if (errno != 0 || *endptr != '\0') {
2143 errno = 0;
2145 if (errno != 0 || *endptr != '\0') {
2565 int argc = *argcp, errno; local
2573 errno
[all...]
/illumos-gate/usr/src/uts/common/xen/os/
H A Dxvdi.c1066 xvdi_dev_error(dev_info_t *dip, int errno, char *errstr) argument
1071 xenbus_dev_error(&pdp->xd_xsdev, errno, errstr);
1075 xvdi_fatal_error(dev_info_t *dip, int errno, char *errstr) argument
1080 xenbus_dev_fatal(&pdp->xd_xsdev, errno, errstr);
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dpathdup.c36 #include <errno.h>
42 #define ERR_MEMORY "memory allocation failure, errno=%d"
95 progerr(gettext(ERR_MEMORY), errno); local
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_nfs.c55 #include <errno.h>
1566 if ((errno = fhs.fhs_status) != MNT_OK) {
1579 if (errno == EACCES) {
1590 errno, host, dir);
1656 if ((errno = res3.fhs_status) != MNT_OK) {
1669 if (errno == EACCES) {
1680 errno, host, dir);
2352 mnttabtext, mntpnt, errno);
2353 if (errno != EBUSY || verbose)
3596 if (errno)
3988 int errno, bufsz; local
[all...]
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dutil.c3151 int err = errno;
3170 err = errno;
3179 err = errno;
3700 * _REENTRANT code gets errno redefined to a function so provide for return
3701 * of the thread errno if applicable. This has no meaning in ld.so.1 which
3704 #undef errno macro
3708 extern int errno;
3710 return (&errno);
3735 extern int errno;
3743 errno
[all...]
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dspd.c6025 * Create a tunnel policy node with "name". Set errno with
6030 create_tunnel_policy(char *name, int *errno, uint64_t *gen, netstack_t *ns) argument
6038 *errno = ENOMEM;
6043 *errno = ENOMEM;
6054 *errno = EEXIST;
6088 *errno = ENOMEM;

Completed in 188 milliseconds

1234