Home | History | Annotate | Download | only in bio

Lines Matching refs:flags

91 	bio->flags=0;
144 void BIO_clear_flags(BIO *b, int flags)
146 b->flags &= ~flags;
149 int BIO_test_flags(const BIO *b, int flags)
151 return (b->flags & flags);
154 void BIO_set_flags(BIO *b, int flags)
156 b->flags |= flags;
533 new->flags=bio->flags;