Lines Matching refs:key
11 const char *key, *value;
21 ret = strcmp(r1->key, r2->key);
46 const char *key, *value, *p, *p2;
52 /* Get a list of all parameters. RFC 2231 uses key*<n>[*]=value pairs,
53 which we want to merge to a key[*]=value pair. Save them to a
58 while ((ret = rfc822_parse_content_param(ctx, &key, &value)) != 0) {
67 p = strchr(key, '*');
87 rfc2231_param.key = t_strdup_until(key, p2);
94 array_append(&result, &key, 1);
120 if (strcasecmp(rfc2231_params[i].key,
121 rfc2231_params[j].key) != 0)
136 key = t_strdup_printf(
139 rfc2231_params[j].key,
141 array_append(&result, &key, 1);
160 key = rfc2231_params[i].key;
162 key = t_strconcat(key, "*", NULL);
164 array_append(&result, &key, 1);