Lines Matching defs:tmp
20 const char *const *tmp;
22 for (tmp = t_strsplit_spaces(str, " "); *tmp != NULL; tmp++) {
23 if (strncmp(*tmp, "default_language=", 17) == 0) {
25 p_strdup(user->pool, *tmp + 17);
26 } else if (strncmp(*tmp, "textcat_conf=", 13) == 0) {
27 set->textcat_conf = p_strdup(user->pool, *tmp + 13);
28 } else if (strncmp(*tmp, "textcat_dir=", 12) == 0) {
29 set->textcat_dir = p_strdup(user->pool, *tmp + 12);
30 } else if (strncmp(*tmp, "whitespace_chars=", 17) == 0) {
31 set->whitespace_chars = p_strdup(user->pool, *tmp + 17);
32 } else if (strcmp(*tmp, "normalize") == 0) {
34 } else if (strcmp(*tmp, "no_snowball") == 0) {
36 } else if (strcmp(*tmp, "mime_parts") == 0) {
38 } else if (strcmp(*tmp, "use_libfts") == 0) {
41 i_error("fts_lucene: Invalid setting: %s", *tmp);