Lines Matching defs:ch
202 unsigned char ch = 0;
204 if ((ret = uri_parse_unreserved_char(parser, &ch)) < 0)
210 str_append_c(part, ch);
223 unsigned char ch = 0;
225 if ((ret=uri_parse_pct_encoded(parser, &ch)) < 0)
228 (ret=uri_parse_unreserved_char(parser, &ch)) < 0)
234 str_append_c(part, ch);
262 unsigned char ch;
265 (parser, &p, NULL, &ch)) != 0) {
268 str_append_c(decoded, ch);
488 unsigned char ch, pch;
492 ch = pch = *parser->cur;
495 if ((ret=uri_parse_pct_encoded(parser, &ch)) < 0) {
498 if (!i_isalnum(ch))
501 str_append_c(host_name, ch);
514 if ((ret=uri_parse_pct_encoded(parser, &ch)) < 0) {
517 if (!i_isalnum(ch) && ch != '-')
522 str_append_c(host_name, ch);
526 ch = *parser->cur;
527 if (!i_isalnum(ch) && ch != '-')
531 pch = ch;
544 if (parser->cur >= parser->end || ch != '.')
842 unsigned char ch = 0;
843 if ((ret=uri_parse_pct_encoded(parser, &ch)) < 0)
987 unsigned char ch = 0;
988 if ((ret=uri_parse_pct_encoded(parser, &ch)) < 0)
1028 unsigned char ch = 0;
1029 if ((ret=uri_parse_pct_encoded(parser, &ch)) < 0)