Home
last modified time | relevance | path

Searched refs:dest_typdatum (Results 1 – 1 of 1) sorted by relevance

/external/selinux/checkpolicy/
Dmodule_compiler.c517 type_datum_t *dest_typdatum; in get_local_type() local
526 dest_typdatum = hashtab_search(types_tab, id); in get_local_type()
527 if (!dest_typdatum) { in get_local_type()
528 dest_typdatum = (type_datum_t *) malloc(sizeof(type_datum_t)); in get_local_type()
529 if (dest_typdatum == NULL) { in get_local_type()
533 type_datum_init(dest_typdatum); in get_local_type()
534 dest_typdatum->s.value = value; in get_local_type()
535 dest_typdatum->flavor = isattr ? TYPE_ATTRIB : TYPE_TYPE; in get_local_type()
536 dest_typdatum->primary = 1; in get_local_type()
537 if (hashtab_insert(types_tab, id, dest_typdatum)) { in get_local_type()
[all …]