Lines Matching defs:buf
5 void buffer_init(buffer_t * buf) in buffer_init()
11 void buffer_close(buffer_t * buf) in buffer_close()
18 unsigned int buffer_used(buffer_t * buf) in buffer_used()
23 unsigned int buffer_unused(buffer_t * buf) in buffer_unused()
28 int buffer_full(buffer_t * buf) in buffer_full()
33 int buffer_notfull(buffer_t * buf) in buffer_notfull()
38 int buffer_empty(buffer_t * buf) in buffer_empty()
43 int buffer_notempty(buffer_t * buf) in buffer_notempty()
48 unsigned long buffer_total_in(buffer_t * buf) in buffer_total_in()
53 unsigned long buffer_total_out(buffer_t * buf) in buffer_total_out()
94 static unsigned int buffer_takedata(buffer_t * buf, unsigned char *ptr, in buffer_takedata()
113 int buffer_from_fd(buffer_t * buf, int fd) in buffer_from_fd()
127 int buffer_to_fd(buffer_t * buf, int fd) in buffer_to_fd()
182 void buffer_from_SSL(buffer_t * buf, SSL *ssl) in buffer_from_SSL()
196 void buffer_to_SSL(buffer_t * buf, SSL *ssl) in buffer_to_SSL()
210 void buffer_from_BIO(buffer_t * buf, BIO *bio) in buffer_from_BIO()
222 void buffer_to_BIO(buffer_t * buf, BIO *bio) in buffer_to_BIO()