Home | History | Annotate | Download | only in src

Lines Matching refs:scope_datum

1494 	scope_datum_t *scope_datum;
1516 scope_datum =
1518 if (scope_datum == NULL) {
1522 if ((scope_datum = malloc(sizeof(*scope_datum))) == NULL) {
1526 scope_datum->scope = scope;
1527 scope_datum->decl_ids = NULL;
1528 scope_datum->decl_ids_len = 0;
1531 scope_datum)) != 0) {
1533 free(scope_datum);
1536 } else if (scope_datum->scope == SCOPE_DECL && scope == SCOPE_DECL) {
1560 } else if (scope_datum->scope == SCOPE_REQ && scope == SCOPE_DECL) {
1561 scope_datum->scope = SCOPE_DECL;
1562 } else if (scope_datum->scope != scope) {
1568 for (i = 0; i < scope_datum->decl_ids_len; i++) {
1569 if (scope_datum->decl_ids[i] == avrule_decl_id) {
1576 &scope_datum->decl_ids_len,
1577 &scope_datum->decl_ids) == -1) {