Home
last modified time | relevance | path

Searched refs:SMWR (Results 1 – 19 of 19) sorted by relevance

/titanic_50/usr/src/cmd/sendmail/libsm/
H A Drefill.c124 if ((fp->f_flags & (SMLBF|SMWR)) == (SMLBF|SMWR))
187 if (fp->f_flags & SMWR)
191 fp->f_flags &= ~SMWR;
H A Dflags.c48 ret = SMWR;
52 ret = SMWR;
H A Dstrio.c134 if (!(s->strio_flags & SMWR) && !(s->strio_flags & SMRW))
251 s->strio_flags = SMWR;
338 flags = SMWR;
379 case SMWR:
482 fp->f_flags = SMWR | SMSTR;
H A Dwsetup.c48 if ((fp->f_flags & SMWR) == 0)
66 fp->f_flags |= SMWR;
H A Dfflush.c56 if ((fp->f_flags & (SMWR | SMRW)) == 0)
102 if ((t & SMWR) == 0)
H A Dfindfp.c93 smio(SMWR|SMLBF, SMIOOUT_FILENO, "smioout"), /* smioout */
94 smio(SMWR|SMNBF, SMIOERR_FILENO, "smioerr"), /* smioerr */
96 smstd(SMWR|SMNBF, SMIOOUT_FILENO, "smiostdout"),/* smiostdout */
97 smstd(SMWR|SMNBF, SMIOERR_FILENO, "smiostderr") /* smiostderr */
H A Dstdio.c242 flags |= SMWR;
281 case SMWR:
503 ioflags = SMWR;
H A Dungetc.c128 if (fp->f_flags & SMWR)
132 fp->f_flags &= ~SMWR;
H A Dfseek.c166 else if (fp->f_flags & SMWR && fp->f_p != NULL)
197 if (fp->f_flags & (SMWR | SMRW | SMNBF | SMNPT))
H A Dvsnprintf.c67 fake.f_flags = SMWR | SMSTR;
H A Dsnprintf.c71 fake.f_flags = SMWR | SMSTR;
H A Dfpos.c139 else if (fp->f_flags & SMWR && fp->f_p != NULL)
H A Dfclose.c122 r = fp->f_flags & SMWR ? sm_flush(fp, (int *) &timeout) : 0;
H A Dvasprintf.c71 fake.f_flags = SMWR | SMSTR | SMALC;
H A Dsetvbuf.c169 if (flags & SMWR)
H A Dsmstdio.c359 ioflags = SMWR;
H A Dlocal.h84 ((((fp)->f_flags & SMWR) == 0 || (fp)->f_bf.smb_base == NULL) && \
H A Dvfprintf.c322 if ((fp->f_flags & (SMNBF|SMWR|SMRW)) == (SMNBF|SMWR) &&
/titanic_50/usr/src/cmd/sendmail/include/sm/
H A Dio.h224 #define SMWR 0x000020 /* OK to write */ macro