Lines Matching refs:current

20     assert(dc->context_ndx > ctx->current->context_ndx);  in configparser_push()
22 dc->parent = ctx->current; in configparser_push()
25 if (ctx->configs_stack->used > 0 && ctx->current->context_ndx == 0) { in configparser_push()
29 array_insert_unique(ctx->configs_stack, (data_unset *)ctx->current); in configparser_push()
30 ctx->current = dc; in configparser_push()
34 data_config *old = ctx->current; in configparser_pop()
35 ctx->current = (data_config *) array_pop(ctx->configs_stack); in configparser_pop()
47 for (dc = ctx->current; dc; dc = dc->parent) { in configparser_get_variable()
847 ctx->current->context_ndx, in yy_reduce()
848 ctx->current->key->ptr, yymsp[-2].minor.yy43->ptr); in yy_reduce()
850 } else if (NULL == array_get_element(ctx->current->value, yymsp[0].minor.yy41->key->ptr)) { in yy_reduce()
851 array_insert_unique(ctx->current->value, yymsp[0].minor.yy41); in yy_reduce()
855 ctx->current->context_ndx, in yy_reduce()
856 ctx->current->key->ptr, yymsp[0].minor.yy41->key->ptr); in yy_reduce()
871 array *vars = ctx->current->value; in yy_reduce()
876 ctx->current->context_ndx, in yy_reduce()
877 ctx->current->key->ptr, yymsp[-2].minor.yy43->ptr); in yy_reduce()
897 array_insert_unique(ctx->current->value, du); in yy_reduce()
902 array_insert_unique(ctx->current->value, yymsp[0].minor.yy41); in yy_reduce()
1108 cur = ctx->current; in yy_reduce()
1111 assert(cur && ctx->current); in yy_reduce()
1151 cur = ctx->current; in yy_reduce()
1154 assert(cur && ctx->current); in yy_reduce()
1194 buffer_copy_string_buffer(b, ctx->current->key); in yy_reduce()