Searched defs:strings (Results 1 - 9 of 9) sorted by relevance
/dovecot/src/lib/ |
H A D | test-bloomfilter.c | 11 const char *const strings[] = { local 16 bloomfilter_set_strings(bf, strings); 20 for(unsigned int i = 0; strings[i] != NULL; i++) { 21 test_assert(bloomfilter_has_string(bf, strings[i]));
|
H A D | backtrace-string.c | 17 char **strings; local 24 strings = backtrace_symbols(stack, ret); 29 if (strings != NULL) 30 str_append(str, strings[i]); 36 free(strings);
|
H A D | env-util.c | 13 const char **strings; member in struct:env_backup 94 environment strings will be invalid after env_clean(). That's why 123 env->strings = p_new(pool, const char *, count + 1); 125 env->strings[i] = p_strdup(pool, environ[i]); 134 for (i = 0; env->strings[i] != NULL; i++) 135 env_put(env->strings[i]);
|
/dovecot/src/plugins/fts/ |
H A D | fts-search-args.c | 15 const char *const *strings; local 18 strings = array_get(arr, &count); 20 if (strcmp(strings[i-1], strings[i]) == 0) { 22 strings = array_get(arr, &count);
|
/dovecot/src/doveadm/dsync/ |
H A D | dsync-mail.c | 118 const char *const *strings, *str; local 124 strings = array_get(src, &count); 130 str = p_strdup(pool, strings[i]);
|
/dovecot/src/master/ |
H A D | master-settings.c | 420 const char *const *strings; local 629 strings = array_get(&all_listeners, &count); 631 if (strcmp(strings[i-1], strings[i]) == 0) { 633 strings[i]);
|
/dovecot/src/config/ |
H A D | config-request.c | 299 const char *const *strings; local 315 strings = array_get(val, &count); 322 strings[i]); 323 ctx->callback(str, strings[i+1],
|
H A D | doveconf.c | 38 ARRAY_TYPE(const_string) strings; 76 array_append(&ctx->strings, &value, 1); 132 pool = pool_alloconly_create(MEMPOOL_GROWING"config human strings", 1024*32); 136 i_array_init(&ctx->strings, 256); 152 array_free(&ctx->strings); 179 const char *const *strings, *const *args, *p, *str, *const *prefixes; local 192 array_sort(&ctx->strings, config_string_cmp); 193 strings = array_get(&ctx->strings, &count); 195 /* strings ar [all...] |
/dovecot/src/lib-settings/ |
H A D | settings-parser.c | 1090 implementations (e.g. valgrind) which change the order of strings 1547 const char *const *strings, *const *dest_strings, *dup; local 1553 strings = array_get(src_arr, &count); 1563 if (strcmp(strings[i], dest_strings[j]) == 0) 1569 dup = keep_values ? strings[i] : p_strdup(pool, strings[i]); 1571 dup = keep_values ? strings[i+1] : p_strdup(pool, strings[i+1]);
|
Completed in 49 milliseconds