Lines Matching refs:dest_typdatum
622 type_datum_t *dest_typdatum; in get_local_type() local
631 dest_typdatum = hashtab_search(types_tab, id); in get_local_type()
632 if (!dest_typdatum) { in get_local_type()
633 dest_typdatum = (type_datum_t *) malloc(sizeof(type_datum_t)); in get_local_type()
634 if (dest_typdatum == NULL) { in get_local_type()
638 type_datum_init(dest_typdatum); in get_local_type()
639 dest_typdatum->s.value = value; in get_local_type()
640 dest_typdatum->flavor = isattr ? TYPE_ATTRIB : TYPE_TYPE; in get_local_type()
641 dest_typdatum->primary = 1; in get_local_type()
642 if (hashtab_insert(types_tab, id, dest_typdatum)) { in get_local_type()
644 type_datum_destroy(dest_typdatum); in get_local_type()
645 free(dest_typdatum); in get_local_type()
651 if (dest_typdatum->flavor != isattr ? TYPE_ATTRIB : TYPE_TYPE) { in get_local_type()
655 return dest_typdatum; in get_local_type()