Lines Matching defs:full_key
28 const char *full_key;
100 char *full_key;
131 prefix = link->full_key == NULL ?
133 t_strconcat(link->full_key, SETTINGS_SEPARATOR_S,
135 full_key = p_strconcat(ctx->set_pool, prefix, key, NULL);
136 new_link->full_key = full_key;
143 i_assert(hash_table_lookup(ctx->links, full_key) == NULL);
144 hash_table_insert(ctx->links, full_key, new_link);
564 link->full_key = key;
582 char *full_key;
600 full_key = p_strdup(ctx->parser_pool, key);
601 if (setting_link_add(ctx, def, &new_link, full_key) < 0)
610 full_key = p_strconcat(ctx->parser_pool, key,
612 if (setting_link_add(ctx, def, &new_link, full_key) < 0)
772 if (parent_link->full_key == NULL ||
773 strcmp(parent_link->full_key, parent_key) != 0)