Searched refs:errno (Results 1 - 25 of 238) sorted by relevance
12345678910
/ast/src/lib/libast/comp/ |
H A D | errno.c | 28 NoN(errno) 35 * errno in the same .o 38 int errno;
|
H A D | rename.c | 45 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 D | dup2.c | 40 save_errno = errno; 42 errno = save_errno;
|
H A D | mkdir.c | 45 n = errno; 48 errno = EEXIST; 51 if (errno != ENOENT) return(-1); 52 errno = n;
|
H A D | rmdir.c | 47 errno = ENOTDIR; 56 n = errno; 59 errno = n; 62 errno = EPERM;
|
H A D | fsync.c | 42 errno = ENOSYS;
|
H A D | link.c | 43 errno = ENOSYS;
|
H A D | spawnveg.c | 71 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 D | open.c | 56 save_errno = errno; 70 errno = EEXIST; 79 errno = EEXIST; 88 errno = save_errno; 107 errno = save_errno; 110 errno = save_errno;
|
H A D | execvpe.c | 39 #include <errno.h> 54 if (errno == ENOEXEC) 73 errno = ENOMEM;
|
H A D | mkfifo.c | 45 errno = ENOSYS;
|
H A D | mount.c | 45 errno = ENOSYS;
|
H A D | vfork.c | 50 errno = ENOSYS;
|
H A D | setpgid.c | 72 errno = EINVAL; 74 errno = ENOSYS;
|
H A D | fcntl.c | 59 save_errno = errno; 81 errno = EINVAL; 90 errno = EINVAL;
|
/ast/src/lib/libcs/ |
H A D | msglib.h | 37 #include <errno.h> 44 #ifndef errno 45 extern int errno;
|
/ast/src/cmd/tests/ |
H A D | strtoi.c | 42 #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 D | strtof.c | 43 #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 D | terrno.c | 41 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 D | proclib.h | 35 #include <errno.h> 61 #ifndef errno 62 extern int errno;
|
/ast/src/cmd/3d/ |
H A D | fpathconf3d.c | 40 oerrno = errno; 41 errno = 0; 43 if (!errno) 45 errno = oerrno;
|
H A D | pathconf3d.c | 43 oerrno = errno; 44 errno = 0; 46 if (!errno) 48 errno = oerrno;
|
/ast/src/lib/libast/path/ |
H A D | pathstat.c | 38 oerrno = errno; 40 errno = oerrno;
|
/ast/src/lib/libast/tm/ |
H A D | tvsettime.c | 26 #include <errno.h> 63 errno = EPERM;
|
H A D | tvtouch.c | 108 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