/external/mksh/src/ |
shf.c | 82 ((oflags & O_ACCMODE) == O_WRONLY ? SHF_WR : SHF_RDWR); 106 sflags |= SHF_WR; 116 if (!(sflags & (SHF_RD | SHF_WR))) 194 if (!(!(sflags & SHF_RD) ^ !(sflags & SHF_WR))) 202 if (!buf && (sflags & SHF_WR) && (sflags & SHF_DYNAMIC)) { 270 if (shf->flags & SHF_WR) { 287 return ((shf->flags & SHF_WR) ? EOF : 0); 575 if (!(shf->flags & SHF_WR)) 630 if (!(shf->flags & SHF_WR)) 720 shf_sopen(buf, bsize, SHF_WR, &shf) [all...] |
main.c | 967 shf_reopen(2, SHF_WR, shl_out); 1365 shf_fdopen(1, SHF_WR, shl_stdout); 1366 shf_fdopen(2, SHF_WR, shl_out); 1367 shf_fdopen(2, SHF_WR, shl_spare); 1386 shf_fdopen(shl_dbg_fd, SHF_WR, shl_dbg); [all...] |
tree.c | 423 shf_sopen(s, n, SHF_WR | (s ? 0 : SHF_DYNAMIC), &shf); 636 shf_sopen(NULL, 32, SHF_WR | SHF_DYNAMIC, &shf);
|
exec.c | 1268 shf_reopen(1, SHF_WR, shl_stdout); [all...] |
jobs.c | 190 shl_j = shf_fdopen(2, SHF_WR, NULL); [all...] |
sh.h | 1040 #define SHF_WR 0x0002 1041 #define SHF_RDWR (SHF_RD|SHF_WR) [all...] |
eval.c | 423 shf_sopen(NULL, 0, SHF_WR|SHF_DYNAMIC, &shf); [all...] |
lex.c | [all...] |