Home | History | Annotate | Download | only in sepolicy-analyze

Lines Matching refs:dat

9 static void retrieve_mapping(policydb_t *policydb, struct type_datum *dat, char *name, int reverse) {
14 ebitmap_for_each_bit(&policydb->type_attr_map[dat->s.value - 1], n, bit) {
22 ebitmap_for_each_bit(&policydb->attr_type_map[dat->s.value - 1], n, bit) {
32 struct type_datum *dat;
34 dat = hashtab_search(policydb->p_types.table, name);
35 if (!dat) {
41 if (dat->flavor != TYPE_TYPE) {
46 if (dat->flavor != TYPE_ATTRIB) {
51 retrieve_mapping(policydb, dat, name, reverse);
58 struct type_datum *dat = (struct type_datum *)d;
60 if (!dat) {
64 if (dat->flavor == TYPE_ATTRIB) {
65 printf("%s\n", pdb->p_type_val_to_name[dat->s.value - 1]);