Lines Matching refs:line
88 const char *line;
92 while ((line = i_stream_next_line(input)) == NULL) {
113 return line;
124 const char *line, *dir, *fname, *escaped_name;
210 while ((line = next_line(list, path, input,
212 if (strcmp(line, escaped_name) == 0) {
220 o_stream_nsend_str(output, line);
228 line = t_strconcat(escaped_name, "\n", NULL);
229 o_stream_nsend_str(output, line);
323 subsfile_list_unescaped(struct subsfile_list_context *ctx, const char *line)
328 while ((p = strchr(line, '\t')) != NULL) {
329 str_append_tabunescaped(ctx->name, line, p-line);
331 line = p+1;
333 str_append_tabunescaped(ctx->name, line, strlen(line));
339 const char *line;
347 line = next_line(ctx->list, ctx->path, ctx->input, &ctx->failed,
377 if (ctx->version > 1 && line != NULL)
378 line = subsfile_list_unescaped(ctx, line);
379 return line;