/dovecot/src/stats/ |
H A D | main.c | 17 const char *name, *suffix; local 25 suffix = strrchr(name, '-'); 26 if (suffix == NULL) 27 suffix = name; 29 suffix++; 31 return strcmp(suffix, "writer") == 0;
|
/dovecot/src/director/ |
H A D | main.c | 86 const char *name, *suffix; local 94 suffix = strrchr(name, '-'); 95 if (suffix == NULL) 96 suffix = name; 98 suffix++; 100 if (strcmp(suffix, "auth") == 0) 102 else if (strcmp(suffix, "userdb") == 0) 104 else if (strcmp(suffix, "authreply") == 0) 106 else if (strcmp(suffix, "ring") == 0) 108 else if (strcmp(suffix, "admi [all...] |
/dovecot/src/auth/ |
H A D | main.c | 104 const char *name, *suffix; local 112 suffix = strrchr(name, '-'); 113 if (suffix == NULL) 114 suffix = name; 116 suffix++; 118 if (strcmp(suffix, "login") == 0) 120 else if (strcmp(suffix, "master") == 0) 122 else if (strcmp(suffix, "userdb") == 0) 124 else if (strcmp(suffix, "postmap") == 0) 126 else if (strcmp(suffix, "toke [all...] |
H A D | db-ldap.c | 1531 const char *suffix) 1555 str_printfa(ctx->debug, " %s%s=", attr, suffix); 1569 p_strconcat(ctx->pool, attr, suffix, NULL), 1587 const char *suffix; local 1607 suffix = t_strdup_printf("@%s", named_res->field->name); 1610 named_res->result->msg, suffix); 1677 const char *field_name, *suffix; local 1680 suffix = strchr(t_strcut(data, ':'), '@'); 1687 field_name = t_strconcat(field_name, suffix, NULL); 1529 get_ldap_fields(struct db_ldap_result_iterate_context *ctx, struct ldap_connection *conn, LDAPMessage *entry, const char *suffix) argument
|
/dovecot/src/config/ |
H A D | config-request.c | 37 char suffix = suffixes[0]; local 45 suffix = suffixes[i]; 48 str_printfa(str, "%"PRIuUOFF_T" %c", size, suffix); 53 const char *suffix = "secs"; local 62 suffix = "mins"; 65 suffix = "hours"; 68 suffix = "days"; 71 suffix = "weeks"; 77 str_printfa(str, "%u %s", stamp, suffix);
|
H A D | doveconf.c | 584 const char *prefix, *suffix; member in struct:hostname_format 599 str_append(str, fmt->suffix); 631 fmt.suffix = p; 633 /* detect host1[suffix] vs host01[suffix] */ 637 fmt.suffix = my_hostname + len;
|
/dovecot/src/lib-index/ |
H A D | mail-index-strmap.h | 43 mail_index_strmap_init(struct mail_index *index, const char *suffix);
|
H A D | mail-index.c | 1101 const char *suffix = errno != EFBIG ? "" : local 1104 "%m%s", function, filepath, suffix);
|
H A D | mail-index-strmap.c | 98 mail_index_strmap_init(struct mail_index *index, const char *suffix) argument 106 strmap->path = i_strconcat(index->filepath, suffix, NULL);
|
/dovecot/src/lib-dict-backend/ |
H A D | dict-sql.c | 1057 string_t *prefix, *suffix; local 1064 suffix = t_str_new(256); 1067 str_append(suffix, ") VALUES ("); 1071 str_append_c(suffix, ','); 1077 str_append_c(suffix, '?'); 1085 str_printfa(suffix, ",'%s'", 1095 str_append(suffix, ",?"); 1102 str_append_str(prefix, suffix);
|