Lines Matching defs:flags
827 * flags (the order of these enums MUST match the order in misc.c(options[]))
832 FNFLAGS /* (place holder: how many flags are there) */
870 uint8_t flags; /* EF_* */
1129 EXTERN const char Tf_flags[] E_INIT("%s: flags 0x%X");
1295 #define Tf_flags "%s: flags 0x%X"
1347 int flags; /* TF_* */
1351 /* values for Trap.flags */
1363 /* values for setsig()/setexecsig() flags argument */
1608 /* Values for Getopt.flags */
1626 int flags; /* see GF_* */
1702 #define shf_eof(shf) ((shf)->flags & SHF_EOF)
1703 #define shf_error(shf) ((shf)->flags & SHF_ERROR)
1705 #define shf_clearerr(shf) ((shf)->flags &= ~(SHF_EOF | SHF_ERROR))
1712 #define SHF_GETFL 0x0004 /* use fcntl() to figure RD/WR flags */
1739 int flags; /* see SHF_* */
1782 /* flags (see below) */
1799 /* (start non-common flags at 8) */
1825 #define LOWER_BI BIT(13) /* (with LOW_BI) override even w/o flags */
1874 int flags; /* AF_* */
1892 int flags; /* see BF_* */
1895 /* Values for struct block.flags */
1952 /* TCOM: arg expansion eval() flags */
2036 /* execute/exchild flags */
2051 * flags to control expansion of words (assumed by t->evalflags to fit
2202 /* flags */
2203 int flags;
2226 /* Source.flags values */
2272 /* flags to yylex */
2368 /* flags to histsave */
2829 int flags; /* TEF_* */
2847 #define binopen2(path,flags) __extension__({ \
2848 int binopen2_fd = open((path), (flags) | O_BINARY); \
2853 #define binopen3(path,flags,mode) __extension__({ \
2854 int binopen3_fd = open((path), (flags) | O_BINARY, (mode)); \
2860 #define binopen2(path,flags) open((path), (flags) | O_BINARY)
2861 #define binopen3(path,flags,mode) open((path), (flags) | O_BINARY, (mode))