Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/kern/
H A Dsubr_sbuf.c42 #define SBUF_ISSET(s, f) ((s)->s_flags & (f)) macro
46 #define SBUF_CANEXTEND(s) SBUF_ISSET(s, SBUF_AUTOEXTEND)
47 #define SBUF_HASOVERFLOWED(s) SBUF_ISSET(s, SBUF_OVERFLOWED)
48 #define SBUF_ISDYNAMIC(s) SBUF_ISSET(s, SBUF_DYNAMIC)
49 #define SBUF_ISDYNSTRUCT(s) SBUF_ISSET(s, SBUF_DYNSTRUCT)
50 #define SBUF_ISFINISHED(s) SBUF_ISSET(s, SBUF_FINISHED)
841 SBUF_ASSERT(SBUF_ISSET(s, SBUF_AUTOEXTEND));
842 SBUF_ASSERT(SBUF_ISSET(s, SBUF_DYNAMIC));
872 SBUF_ASSERT(SBUF_ISSET(s, SBUF_DYNAMIC));
873 SBUF_ASSERT(SBUF_ISSET(s, SBUF_DYNSTRUCT));
[all …]