HomeSort by: relevance | last modified time | path
    Searched refs:SHF_UNBUF (Results 1 - 3 of 3) sorted by relevancy

  /src/bin/ksh/
shf.h 30 #define SHF_UNBUF 0x0008 /* unbuffered I/O */
49 int rbsize; /* size of buffer (1 if SHF_UNBUF) */
52 int wbsize; /* size of buffer (0 if SHF_UNBUF) */
shf.c 43 int bsize = sflags & SHF_UNBUF ? (sflags & SHF_RD ? 1 : 0) : SHF_BSIZE;
85 int bsize = sflags & SHF_UNBUF ? (sflags & SHF_RD ? 1 : 0) : SHF_BSIZE;
122 shf->wbsize = sflags & SHF_UNBUF ? 0 : bsize;
138 int bsize = sflags & SHF_UNBUF ? (sflags & SHF_RD ? 1 : 0) : SHF_BSIZE;
166 shf->wbsize = sflags & SHF_UNBUF ? 0 : bsize;
651 if (shf->flags & SHF_UNBUF) {
io.c 206 /* test if we can seek backwards fd (returns 0 or SHF_UNBUF) */
214 SHF_UNBUF : 0;

Completed in 12 milliseconds