Lines Matching defs:vd
1724 struct ap_vrprintf_data *vd = (struct ap_vrprintf_data*)buff;
1726 if (vd->r->connection->aborted)
1730 if (buffer_output(vd->r, vd->buff, AP_IOBUFSIZE)) {
1735 vd->vbuff.curpos = vd->buff;
1736 vd->vbuff.endpos = vd->buff + AP_IOBUFSIZE;
1744 struct ap_vrprintf_data vd;
1747 vd.vbuff.curpos = vrprintf_buf;
1748 vd.vbuff.endpos = vrprintf_buf + AP_IOBUFSIZE;
1749 vd.r = r;
1750 vd.buff = vrprintf_buf;
1755 written = apr_vformatter(r_flush, &vd.vbuff, fmt, va);
1758 int n = vd.vbuff.curpos - vrprintf_buf;