Lines Matching refs:line
76 const char *line, const char **error_r)
81 if (*line == '"') {
82 line++;
83 if (str_unescape_next(&line, &vpattern) < 0) {
87 if (line[0] != ' ') {
91 line++;
93 p = strchr(line, ' ');
98 if (p == line) {
102 vpattern = t_strdup_until(line, p);
103 line = p + 1;
108 if (acl_rights_parse_line(line, ctx->file->rights_pool,
121 const char *line, *error, *prev_vpattern;
133 while ((line = i_stream_read_next_line(input)) != NULL) {
135 if (line[0] == '\0' || line[0] == '#')
138 ret = acl_global_file_parse_line(&ctx, line, &error);
140 i_error("Global ACL file %s line %u: %s",