Lines Matching refs:data_config
14 static void configparser_push(config_t *ctx, data_config *dc, int isnew) { in configparser_push()
30 static data_config *configparser_pop(config_t *ctx) { in configparser_pop()
31 data_config *old = ctx->current; in configparser_pop()
32 ctx->current = (data_config *) array_pop(ctx->configs_stack); in configparser_pop()
39 data_config *dc; in configparser_get_variable()
125 %type condline {data_config *}
126 %type condlines {data_config *}
127 %type global {data_config *}
335 data_config *dc;
336 dc = (data_config *)array_get_element(ctx->srv->config_context, "global");
342 data_config *cur; in global()
370 data_config *cur; in condline()
381 data_config *dc; in SRVVARNAME()
416 if (NULL != (dc = (data_config *)array_get_element(ctx->all_configs, b->ptr))) { in SRVVARNAME()