Home
last modified time | relevance | path

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

/netbsd/external/ibm-public/postfix/dist/src/util/
H A Dvstream.c590 #define VSTREAM_ACC_MASK(f) ((f) & (O_APPEND | O_WRONLY | O_RDWR)) macro
592 #define VSTREAM_CAN_READ(f) (VSTREAM_ACC_MASK(f) == O_RDONLY \
593 || VSTREAM_ACC_MASK(f) == O_RDWR)
594 #define VSTREAM_CAN_WRITE(f) (VSTREAM_ACC_MASK(f) & O_WRONLY \
595 || VSTREAM_ACC_MASK(f) & O_RDWR \
596 || VSTREAM_ACC_MASK(f) & O_APPEND)
1840 switch (VSTREAM_ACC_MASK(flags)) { in vstream_memreopen()