Lines Matching defs:ateof
66 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof,
69 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof,
71 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof,
74 static size_t encoder_qp_read(char *buffer, size_t size, bool ateof,
381 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof,
387 (void) ateof;
409 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof,
415 (void) ateof;
435 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof,
482 if(ateof) {
534 static int qp_lookahead_eol(struct mime_encoder_state *st, int ateof, size_t n)
537 if(n >= st->bufend && ateof)
540 return ateof? 0: -1;
548 static size_t encoder_qp_read(char *buffer, size_t size, bool ateof,
574 switch(qp_lookahead_eol(st, ateof, 1)) {
588 switch(qp_lookahead_eol(st, ateof, 0)) {
613 switch(qp_lookahead_eol(st, ateof, consumed)) {
860 bool ateof = FALSE;
863 if(st->bufbeg < st->bufend || ateof) {
865 sz = part->encoder->encodefunc(buffer, bufsize, ateof, part);
868 if(ateof)
897 ateof = TRUE;