Home | History | Annotate | Download | only in src

Lines Matching refs:scope_datum

1480 	scope_datum_t *scope_datum;
1502 scope_datum =
1504 if (scope_datum == NULL) {
1508 if ((scope_datum = malloc(sizeof(*scope_datum))) == NULL) {
1512 scope_datum->scope = scope;
1513 scope_datum->decl_ids = NULL;
1514 scope_datum->decl_ids_len = 0;
1517 scope_datum)) != 0) {
1519 free(scope_datum);
1522 } else if (scope_datum->scope == SCOPE_DECL && scope == SCOPE_DECL) {
1546 } else if (scope_datum->scope == SCOPE_REQ && scope == SCOPE_DECL) {
1547 scope_datum->scope = SCOPE_DECL;
1548 } else if (scope_datum->scope != scope) {
1554 for (i = 0; i < scope_datum->decl_ids_len; i++) {
1555 if (scope_datum->decl_ids[i] == avrule_decl_id) {
1562 &scope_datum->decl_ids_len,
1563 &scope_datum->decl_ids) == -1) {