Home | History | Annotate | Download | only in mail

Lines Matching defs:qend

193 	char *q, *qend;
198 qend = dstend;
201 while (p < pend && q < qend)
230 char *q, *qend;
235 qend = outbuf + outsize - 1; /* Make sure there is room for the trailing NULL! */
240 while (*p && q < qend) {
244 decode_word((p1 = p, &p1), (q1 = q, &q1), qend, charset) == 0 &&
252 copy_skipped_FWS(&q, qend, &p0, p);
254 if (q < qend)
258 copy_skipped_FWS(&q, qend, &p0, p);
274 char *q, *qend;
280 qend = oend;
283 while (p < pend && q < qend) {
288 decode_word((p1 = p, &p1), (q1 = q, &q1), qend, charset) == 0 &&
302 copy_skipped_FWS(&q, qend, &p0, p);
303 if (q >= qend) /* XXX - q > qend cannot happen */
313 if (decode_comment(&q, qend, &p, pend, charset) == -1)
322 if (q < qend)
347 char *q, *qend;
349 qend = oend;
353 while (p < pend && q < qend) {
361 if (q >= qend)
383 char *q, *qend;
385 qend = oend;
389 while (p < pend && q < qend) {
397 if (q >= qend)
438 char *q, *qend;
447 qend = linebuf + bufsize - 1; /* save room for the NULL terminator */
450 while (p < pend && q < qend) {
455 copy_skipped_FWS(&q, qend, &p0, p);
456 if (q >= qend)
463 (void)decode_comment(&q, qend, &p, pend, charset);
469 decode_quoted_string(&q, qend, &p, pend);
475 decode_domain_literal(&q, qend, &p, pend);
483 if (q >= qend)
498 decode_word((p1 = p, &p1), (q1 = q, &q1), qend, charset) == 0 &&
514 copy_skipped_FWS(&q, qend, &p0, p);
515 if (q >= qend)
535 copy_skipped_FWS(&q, qend, &p0, p);