Searched refs:errno (Results 1 - 25 of 238) sorted by relevance

12345678910

/ast/src/lib/libast/comp/
H A Derrno.c28 NoN(errno)
35 * errno in the same .o
38 int errno;
H A Drename.c45 oerrno = errno;
54 errno = oerrno;
58 errno = EPERM;
70 ooerrno = errno;
74 if (errno == EPERM)
76 errno = ooerrno;
80 oerrno = errno;
84 if (errno == EPERM)
86 errno = ooerrno;
90 errno
[all...]
H A Ddup2.c40 save_errno = errno;
42 errno = save_errno;
H A Dmkdir.c45 n = errno;
48 errno = EEXIST;
51 if (errno != ENOENT) return(-1);
52 errno = n;
H A Drmdir.c47 errno = ENOTDIR;
56 n = errno;
59 errno = n;
62 errno = EPERM;
H A Dfsync.c42 errno = ENOSYS;
H A Dlink.c43 errno = ENOSYS;
H A Dspawnveg.c71 while (waitpid(pid, NiL, 0) == -1 && errno == EINTR);
73 errno = ENOEXEC;
81 errno = err;
184 n = errno;
204 n = errno;
215 if (setpgid(0, pgid) < 0 && errno == EPERM)
229 *exec_errno_ptr = errno;
233 m = errno;
237 _exit(errno == ENOENT ? EXIT_NOTFOUND : EXIT_NOEXEC);
243 while (waitpid(pid, NiL, 0) == -1 && errno
[all...]
H A Dopen.c56 save_errno = errno;
70 errno = EEXIST;
79 errno = EEXIST;
88 errno = save_errno;
107 errno = save_errno;
110 errno = save_errno;
H A Dexecvpe.c39 #include <errno.h>
54 if (errno == ENOEXEC)
73 errno = ENOMEM;
H A Dmkfifo.c45 errno = ENOSYS;
H A Dmount.c45 errno = ENOSYS;
H A Dvfork.c50 errno = ENOSYS;
H A Dsetpgid.c72 errno = EINVAL;
74 errno = ENOSYS;
H A Dfcntl.c59 save_errno = errno;
81 errno = EINVAL;
90 errno = EINVAL;
/ast/src/lib/libcs/
H A Dmsglib.h37 #include <errno.h>
44 #ifndef errno
45 extern int errno;
/ast/src/cmd/tests/
H A Dstrtoi.c42 #include <errno.h>
49 #ifndef errno
50 extern int errno;
138 errno = 0;
140 printf("strtol \"%s\" \"%s\" %ld %s\n", s, p, l, errno == 0 ? "OK" : errno == ERANGE ? "ERANGE" : errno == EINVAL ? "EINVAL" : "ERROR");
142 errno = 0;
145 printf("strton \"%s\" \"%s\" %ld %s %d\n", s, p, l, errno == 0 ? "OK" : errno
[all...]
H A Dstrtof.c43 #include <errno.h>
51 #ifndef errno
52 extern int errno;
139 errno = 0;
141 printf("strtod \"%s\" \"%s\" %.*e %s\n", s, p, DBL_DIG - 1, d, errno == 0 ? "OK" : errno == ERANGE ? "ERANGE" : errno == EINVAL ? "EINVAL" : "ERROR");
143 errno = 0;
145 printf("strtold \"%s\" \"%s\" %.*Le %s\n", s, p, LDBL_DIG - 1, ld, errno == 0 ? "OK" : errno
[all...]
/ast/src/cmd/tests/sfio/
H A Dterrno.c41 errno = 0;
44 if(errno != EBADF)
45 twarn("Wrong errno %d after sfwrite(%d), expecting %d",errno,rv,EBADF);
47 /* on some system (eg, apple), lseek does not set errno for this case */
48 errno = 0;
50 lseek_errno = errno;
52 errno = 0;
56 if(errno != lseek_errno)
57 twarn("Wrong errno
[all...]
/ast/src/lib/libast/misc/
H A Dproclib.h35 #include <errno.h>
61 #ifndef errno
62 extern int errno;
/ast/src/cmd/3d/
H A Dfpathconf3d.c40 oerrno = errno;
41 errno = 0;
43 if (!errno)
45 errno = oerrno;
H A Dpathconf3d.c43 oerrno = errno;
44 errno = 0;
46 if (!errno)
48 errno = oerrno;
/ast/src/lib/libast/path/
H A Dpathstat.c38 oerrno = errno;
40 errno = oerrno;
/ast/src/lib/libast/tm/
H A Dtvsettime.c26 #include <errno.h>
63 errno = EPERM;
H A Dtvtouch.c108 oerrno = errno;
144 if (errno != ENOSYS)
146 if (errno != ENOENT || !(flags & TV_TOUCH_CREATE))
153 errno = oerrno;
161 errno = oerrno;
198 if (errno != ENOENT && av == (const Tv_t*)&now && mv == (const Tv_t*)&now && !utimets(path, NiL))
200 errno = oerrno;
227 if (errno != ENOENT && av == (const Tv_t*)&now && mv == (const Tv_t*)&now && !utimes(path, NiL))
229 errno = oerrno;
239 if (errno !
[all...]

Completed in 60 milliseconds

12345678910