Home | History | Annotate | Download | only in src

Lines Matching full:curblock

1012 	avrule_block_t *curblock;
1018 for (curblock = p->global; curblock != NULL; curblock = curblock->next) {
1019 for (decl = curblock->branch_list; decl != NULL;
1031 for (curblock = p->global; curblock != NULL; curblock = curblock->next) {
1032 for (decl = curblock->branch_list; decl != NULL;
3498 avrule_block_t *last_block = NULL, *curblock;
3512 if ((curblock = calloc(1, sizeof(*curblock))) == NULL) {
3517 free(curblock);
3522 curblock->flags |= AVRULE_OPTIONAL;
3527 avrule_block_destroy(curblock);
3533 avrule_block_destroy(curblock);
3537 if (curblock->enabled != NULL) {
3540 avrule_block_destroy(curblock);
3543 curblock->enabled = curdecl;
3547 if (curblock->branch_list == NULL) {
3548 curblock->branch_list = curdecl;
3558 *block = curblock;
3561 last_block->next = curblock;
3563 last_block = curblock;