Searched defs:ERROR (Results 1 - 6 of 6) sorted by relevance
/ast/src/lib/libast/preroot/ |
H A D | getpreroot.c | 43 #define ERROR(e) {errno=e;goto error;} macro 83 if (stat(PR_REAL, cur) || stat("/", par) || cur->st_dev == par->st_dev && cur->st_ino == par->st_ino) ERROR(ENOTDIR); 98 if ((d - dots) > (PATH_MAX - 4)) ERROR(ERANGE); 102 if (!(dirp = opendir(dots))) ERROR(errno); 104 if (fstat(dirp->dd_fd, par)) ERROR(errno); 106 if (stat(dots, par)) ERROR(errno); 141 if (!(entry = readdir(dirp))) ERROR(ENOENT); 143 if ((d - dots) > (PATH_MAX - 1 - namlen)) ERROR(ERANGE); 145 if (stat(dots, &tstst)) ERROR(errno); 149 if ((p -= namlen) <= (path + 1)) ERROR(ERANG [all...] |
/ast/src/cmd/INIT/ |
H A D | regress.sh | 86 [+EMPTY \bINPUT|OUTPUT|ERROR|SAME?The corresponding file is 88 [+ERROR \b[ \b-e\b \afilter\a ]] [ \b-n\b ]] \afile\a | - \adata\a ...?The 93 output that is applied to ERROR before comparison with the 110 [+FIFO \bINPUT|OUTPUT|ERROR\b [ \b-n\b ]] \afile\a | - \adata\a ...?The 138 [+IO \b[ \bFIFO\b | \bPIPE\b ]] \bINPUT|OUTPUT|ERROR\b [ \b-e\b \afilter\a ]] [ \b-n\b ]] \afile\a | - \adata\a ...?Internal 158 output that is applied to ERROR before comparison with the 160 [+PIPE \bINPUT|OUTPUT|ERROR\b [ \b-n\b ]] \afile\a | - \adata\a ...?The 243 : >INPUT >OUTPUT.ex >ERROR.ex 248 ERROR="" 733 function IO # [ PIPE ] INPUT|OUTPUT|ERROR [ 925 function ERROR # file|- data ... function [all...] |
/ast/src/lib/libcmd/ |
H A D | tail.c | 109 #define ERROR (1<<1) macro 356 *f &= ~(ERROR|NEGATIVE|POSITIVE); 376 *f |= ERROR; 381 *f |= ERROR; 472 flags &= ~(ERROR|NEGATIVE|POSITIVE); 480 if (flags & ERROR)
|
/ast/src/cmd/ksh93/sh/ |
H A D | streval.c | 113 #define ERROR(vp,msg) return(seterror((vp),msg)) macro 593 ERROR(vp,e_moretokens); 627 ERROR(vp,e_synbad); 631 ERROR(vp,e_synbad); 636 ERROR(vp,e_notlvalue); 663 ERROR(vp,e_badnum); 669 ERROR(vp,e_notlvalue); 671 ERROR(vp,e_synbad); 686 ERROR(vp,e_paren); 688 ERROR(v [all...] |
/ast/src/lib/libpp/ |
H A D | ppproto.c | 113 #undef ERROR macro 114 #define ERROR (1L<<4) macro 716 proto->flags |= ERROR; 2529 if (proto->flags & ERROR) return -1; 2587 if ((proto->flags & (ERROR|MORE)) == ERROR)
|
/ast/src/cmd/mailx/ |
H A D | mailx.h | 307 #define ERROR (1<<1) /* stderr message */ macro
|
Completed in 232 milliseconds