Home | History | Annotate | Download | only in checkpolicy

Lines Matching refs:typdatum

310 	type_datum_t *typdatum;
326 typdatum = (type_datum_t *) malloc(sizeof(type_datum_t));
327 if (!typdatum) {
332 type_datum_init(typdatum);
333 typdatum->primary = primary;
334 typdatum->flavor = isattr ? TYPE_ATTRIB : TYPE_TYPE;
336 retval = declare_symbol(SYM_TYPES, id, typdatum, &value, &value);
338 if (typdatum->primary) {
339 typdatum->s.value = value;
344 type_datum_destroy(typdatum);
345 free(typdatum);
362 return typdatum;