HomeSort by relevance Sort by last modified time
    Searched defs:errno (Results 1 - 25 of 62) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/mdb/common/libstand/
errno.c 30 #include <errno.h>
32 int errno; variable
  /onnv/onnv-gate/usr/src/head/
errno.h 41 #include <sys/errno.h>
56 #define errno (*(___errno())) macro
58 extern int errno;
59 /* ANSI C++ requires that errno be a macro */
61 #define errno errno macro
  /onnv/onnv-gate/usr/src/stand/lib/sa/
errno.c 30 #include <errno.h>
32 int errno; variable
43 (void) snprintf(errmsgbuf, sizeof (errmsgbuf), "ERRNO: %d", errnum);
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/libinst/
qstrdup.c 35 #include <errno.h>
41 #define ERR_MEMORY "memory allocation failure, errno=%d"
51 progerr(gettext(ERR_MEMORY), errno); local
flex_dev.c 34 #include <errno.h>
39 #define ERR_CHDIR "unable to chdir back to <%s>, errno=%d"
41 "errno=%d"
60 progerr(gettext(ERR_GETCWD), errno); local
66 progerr(gettext(ERR_CHDIR), cwd, errno); local
eptstat.c 32 #include <errno.h>
50 #define ERR_MEMORY "memory allocation failure, errno=%d"
118 progerr(gettext(ERR_MEMORY), errno); local
pathdup.c 36 #include <errno.h>
42 #define ERR_MEMORY "memory allocation failure, errno=%d"
96 progerr(gettext(ERR_MEMORY), errno); local
putparam.c 40 #include <errno.h>
98 progerr(gettext(ERR_MEMORY), errno); local
125 progerr(gettext(ERR_MEMORY), errno); local
148 progerr(gettext(ERR_MEMORY), errno); local
  /onnv/onnv-gate/usr/src/lib/libpkg/common/
pkgexecv.c 32 #include <errno.h>
182 progerr(pkg_gt(ERR_FORK_FAILED), errno, strerror(errno)); local
258 if (errno == EAGAIN) {
262 if (errno == EINTR) {
297 errno, strerror(errno)); local
442 progerr(pkg_gt(ERR_EX_FAIL), arg[0], errno); local
gpkglist.c 36 #include <errno.h>
83 progerr(pkg_gt(ERR_MEMORY), errno); local
84 errno = ENOMEM;
128 errno = ENOPKG; /* contains no valid packages */
141 errno = EFAULT;
152 errno = EFAULT;
165 errno = ((n == 3) ? EINTR : EFAULT);
215 errno = ESRCH;
234 errno = ESRCH;
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkgremove/
delmap.c 32 #include <errno.h>
50 #define ERR_WRENT "write of entry failed, errno=%d"
51 #define ERR_MEMORY "no memory, errno=%d"
80 progerr(gettext(ERR_MEMORY), errno); local
87 progerr(gettext(ERR_MEMORY), errno); local
106 progerr(gettext(ERR_WRENT), errno); local
148 progerr(gettext(ERR_MEMORY), errno); local
  /onnv/onnv-gate/usr/src/cmd/bnu/
cpmv.c 76 DEBUG(5, "open of file returned errno %d\n", errno);
98 DEBUG(5, "rename failed: errno %d\n", errno);
152 ASSERT(unlink(file) == 0, Ct_UNLINK, file, errno); local
gename.c 123 ASSERT(fp != NULL, Ct_OPEN, seqfile, errno);
128 Ct_CREATE, seqfile, errno);
136 ASSERT(ferror(fp) == 0, Ct_WRITE, seqfile, errno); local
138 ASSERT(ferror(fp) == 0, Ct_CLOSE, seqfile, errno); local
gtcfile.c 204 ASSERT(xmv(wfile1, cmitfile) == 0, Ct_LINK, cmitfile, errno); local
anlwrk.c 100 errent(Ct_OPEN,file,errno, __FILE__, __LINE__);
133 ASSERT(unlink(file) == 0, Ct_UNLINK, file, errno); local
157 errent(Ct_OPEN, afile, errno, __FILE__, __LINE__);
214 ASSERT(chdir(newspool) == 0, Ct_CHDIR, newspool, errno); local
  /onnv/onnv-gate/usr/src/lib/libsasl/lib/
seterror.c 73 /* need to handle the fact that errno has been defined as a function
75 # ifdef errno
76 # undef errno macro
77 # endif /* errno */
101 * of an errno error)
250 case 'm': /* insert the errno string */
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/solaris/
nsc_proc.c 28 #include <sys/errno.h>
44 int errno; member in struct:nsc_nlwp
76 * Returns 0 or errno.
200 * Returns 0 or errno.
252 /* retrieve errno from child's lock operation */
253 rc = (int)nlwp->errno;
320 nsc_lockchild(uint64_t arg, uint64_t errno)
337 nlwp->errno = (int)errno;
344 if (!nlwp || errno) {
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/sdcard/impl/
sda_init.c 65 sda_err_t errno; local
71 errno = sda_cmd_exec(slot, cmdp, resp);
75 return (errno);
83 sda_err_t errno; local
89 errno = sda_cmd_exec(slot, cmdp, resp);
93 return (errno);
586 sda_err_t errno; local
604 errno = sda_cmd_exec(slot, cmdp, NULL);
608 return (errno);
sda_cmd.c 165 sda_cmd_notify(sda_cmd_t *cmdp, uint16_t flags, sda_err_t errno)
179 c->c_errno = errno;
210 sda_err_t errno = 0; local
221 errno = SDA_EFAULT;
224 errno = SDA_ENODEV;
226 if (errno != SDA_EOK) {
229 sda_cmd_notify(cmdp, SDA_CMDF_DAT | SDA_CMDF_BUSY, errno);
332 int errno; local
357 errno = CIP(cmdp)->c_errno;
359 return (errno);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/src/
err.c 72 ** - syserr decides what class of error this is by looking at errno.
79 errno = ENOMEM;
96 ** reply code defaults to 451 or 554, depending on errno.
131 int save_errno = errno;
256 errno = 0;
460 errno = 0; local
514 errno = 0; local
659 shortenstring(msg, MAXSHORTSTR), sm_errstring(errno));
  /onnv/onnv-gate/usr/src/lib/libumem/common/
linktest_stand.c 71 int errno; variable
  /onnv/onnv-gate/usr/src/uts/common/zmod/
zutil.c 146 * errno. We define it as a global variable to simplify porting.
149 int errno = 0; variable
zutil.h 34 * errno. We define it as a global variable to simplify porting.
38 # define errno z_errno macro
40 extern int errno;
43 # include <sys/errno.h>
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkgchk/
checkmap.c 34 #include <errno.h>
70 #define ERR_NOMEM "unable to allocate dynamic memory, errno=%d"
358 progerr(gettext(ERR_NOMEM), errno); local
  /onnv/onnv-gate/usr/src/uts/common/fs/smbclnt/netsmb/
smb_subrs.c 197 unsigned errno; member in struct:__anon14
    [all...]

Completed in 1660 milliseconds

1 2 3