Lines Matching refs:current

646  * when the module is removed, its slot is lost so all the current
649 * all our current data. I.e. when doing a restart.
1099 ap_directive_t **current,
1150 if (*current) {
1151 (*current)->next = sub_tree;
1154 *current = sub_tree;
1156 (*curr_parent)->first_child = (*current);
1158 if (*current) {
1159 (*current)->parent = (*curr_parent);
1162 if (*current) {
1164 /* Before walking *current to the end of the list,
1165 * set the head to *current.
1167 *conftree = *current;
1169 while ((*current)->next != NULL) {
1170 (*current) = (*current)->next;
1171 (*current)->parent = (*curr_parent);
1180 (*current) = ap_add_node(curr_parent, *current, newdir, 1);
1210 *current = *curr_parent;
1211 *curr_parent = (*current)->parent;
1215 *current = ap_add_node(curr_parent, *current, newdir, 0);
1227 ap_directive_t **current,
1250 retval = ap_build_config_sub(p, temp_pool, vb.buf, parms, current,
1260 sub_tree = *current;
1267 *current = sub_tree;
1271 static const char *ap_walk_config_sub(const ap_directive_t *current,
1277 char *dir = apr_pstrdup(parms->temp_pool, current->directive);
1284 parms->err_directive = current;
1294 current->directive,
1315 retval = invoke_cmd(cmd, parms, dir_config, current->args, NULL);
1324 parms->err_directive = current;
1333 AP_DECLARE(const char *) ap_walk_config(ap_directive_t *current,
1342 for (; current != NULL; current = current->next) {
1345 parms->directive = current;
1348 errmsg = ap_walk_config_sub(current, parms, section_vector);
1364 ap_directive_t *current = *conftree;
1376 if (current != NULL) {
1382 last_ptr = &(current->last);
1385 current = *last_ptr;
1388 while (current->next) {
1389 current = current->next;
1394 *last_ptr = current;
1401 &current, &curr_parent, conftree);
1409 if (*conftree == NULL && current != NULL) {
1410 *conftree = current;
1841 int current;
1883 for (current = 0; current < candidates->nelts; ++current) {
1884 fnew = &((fnames *) candidates->elts)[current];
1915 int current;
1980 for (current = 0; current < candidates->nelts; ++current) {
1981 fnew = &((fnames *) candidates->elts)[current];
2484 * within .htaccess --> override = AllowOverride for current directory;
2610 static int count_directives_sub(const char *directive, ap_directive_t *current)
2613 while (current != NULL) {
2614 if (current->first_child != NULL)
2615 count += count_directives_sub(directive, current->first_child);
2616 if (strcasecmp(current->directive, directive) == 0)
2618 current = current->next;