HomeSort by relevance Sort by last modified time
    Searched full:dest_typdatum (Results 1 - 1 of 1) sorted by null

  /external/checkpolicy/
module_compiler.c 516 type_datum_t *dest_typdatum; local
525 dest_typdatum = hashtab_search(types_tab, id);
526 if (!dest_typdatum) {
527 dest_typdatum = (type_datum_t *) malloc(sizeof(type_datum_t));
528 if (dest_typdatum == NULL) {
532 type_datum_init(dest_typdatum);
533 dest_typdatum->s.value = value;
534 dest_typdatum->flavor = isattr ? TYPE_ATTRIB : TYPE_TYPE;
535 dest_typdatum->primary = 1;
536 if (hashtab_insert(types_tab, id, dest_typdatum)) {
    [all...]

Completed in 414 milliseconds