Home | History | Annotate | Download | only in src

Lines Matching refs:scope_datum

1478 	scope_datum_t *scope_datum;
1500 scope_datum =
1502 if (scope_datum == NULL) {
1506 if ((scope_datum = malloc(sizeof(*scope_datum))) == NULL) {
1510 scope_datum->scope = scope;
1511 scope_datum->decl_ids = NULL;
1512 scope_datum->decl_ids_len = 0;
1515 scope_datum)) != 0) {
1517 free(scope_datum);
1520 } else if (scope_datum->scope == SCOPE_DECL && scope == SCOPE_DECL) {
1544 } else if (scope_datum->scope == SCOPE_REQ && scope == SCOPE_DECL) {
1545 scope_datum->scope = SCOPE_DECL;
1546 } else if (scope_datum->scope != scope) {
1552 for (i = 0; i < scope_datum->decl_ids_len; i++) {
1553 if (scope_datum->decl_ids[i] == avrule_decl_id) {
1560 &scope_datum->decl_ids_len,
1561 &scope_datum->decl_ids) == -1) {