Home | History | Annotate | Download | only in src

Lines Matching refs:scope

4  * or global scope) for a policy module.
70 ebitmap_init(&decl->required.scope[i]);
71 ebitmap_init(&decl->declared.scope[i]);
78 static void scope_index_destroy(scope_index_t * scope)
81 if (scope == NULL) {
85 ebitmap_destroy(scope->scope + i);
87 for (i = 0; i < scope->class_perms_len; i++) {
88 ebitmap_destroy(scope->class_perms_map + i);
90 free(scope->class_perms_map);
156 scope_datum_t *scope =
157 (scope_datum_t *) hashtab_search(p->scope[symbol_table].table, id);
159 if (scope == NULL) {
162 if (scope->scope != SCOPE_DECL) {
165 for (i = 0; i < scope->decl_ids_len; i++) {
167 p->decl_val_to_struct[scope->decl_ids[i] - 1];