Lines Matching defs:textbuf
180 string_t *textbuf = reply->content->text;
190 reply->content->last_line = str_len(textbuf);
193 str_append(textbuf, reply->content->status_prefix);
195 str_append(textbuf, text);
199 str_append_n(textbuf, text, p - text - 1);
201 str_append_n(textbuf, text, p - text);
204 str_append(textbuf, "\r\n");
369 string_t *textbuf, *str;
374 textbuf = reply->content->text;
375 i_assert(str_len(textbuf) > 0);
379 text = str_c(textbuf);
380 text_len = str_len(textbuf);
408 string_t *textbuf;
413 textbuf = reply->content->text;
414 i_assert(str_len(textbuf) > 0);
417 text = str_c_modifiable(textbuf);
424 if (o_stream_send(output, str_data(textbuf), str_len(textbuf)) < 0) {
460 string_t *textbuf;
463 textbuf = reply->content->text;
464 str_append(textbuf, reply->content->status_prefix);
465 str_append(textbuf, conn->set.hostname);
466 str_append(textbuf, "\r\n");
474 string_t *textbuf;
478 textbuf = reply->content->text;
480 reply->content->last_line = str_len(textbuf);
481 str_append(textbuf, reply->content->status_prefix);
482 str_append(textbuf, keyword);
483 str_append(textbuf, "\r\n");
490 string_t *textbuf;
494 textbuf = reply->content->text;
496 reply->content->last_line = str_len(textbuf);
497 str_append(textbuf, reply->content->status_prefix);
498 str_append(textbuf, keyword);
501 str_append_c(textbuf, ' ');
502 str_vprintfa(textbuf, param_fmt, args);
505 str_append(textbuf, "\r\n");