Home
last modified time | relevance | path

Searched refs:FMASK (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/troff/
H A Dtdef.h222 #define FMASK (0377L << 16) macro
223 #define SFMASK (SMASK|FMASK) /* size and font in a tchar */
231 #define setfbits(n,f) n = (n & ~FMASK) | (tchar)(f) << 16
/illumos-gate/usr/src/ucbhead/sys/
H A Dfile.h89 #define FMASK 0xff /* should be disjoint from FASYNC */ macro
H A Dfcntl.h132 #define FMASK 0xFF /* should be disjoint from FASYNC */ macro
/illumos-gate/usr/src/uts/common/sys/
H A Dfile.h93 #define FMASK 0xa0ff /* all flags that can be changed by F_SETFL */ macro
/illumos-gate/usr/src/boot/sys/sys/
H A Dfcntl.h153 #define FMASK (FREAD|FWRITE|FAPPEND|FASYNC|FFSYNC|FNONBLOCK|O_DIRECT|FEXEC) macro
/illumos-gate/usr/src/uts/common/syscall/
H A Dfcntl.c115 retval = (flag & (FMASK | FASYNC)); in fcntl()
244 iarg &= FMASK; in fcntl()
246 fp->f_flag &= ~FMASK | (FREAD|FWRITE); in fcntl()
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c759 nfp->f_flag &= ~FMASK | (FREAD|FWRITE); in accept()