Lines Matching defs:attr
232 type_datum_t *attr;
235 attr = hashtab_search(decl->p_types.table, id);
236 if (attr == NULL)
237 printf("could not find attr %s in decl %d\n", id, decl->decl_id);
239 attr = hashtab_search(p->p_types.table, id);
240 if (attr == NULL)
241 printf("could not find attr %s in policy\n", id);
244 CU_ASSERT_FATAL(attr != NULL);
245 CU_ASSERT(attr->flavor == TYPE_ATTRIB);
246 CU_ASSERT(attr->primary == 1);
248 ebitmap_for_each_positive_bit(&attr->types, tnode, i) {