Searched refs:dest_typdatum (Results 1 – 1 of 1) sorted by relevance
622 type_datum_t *dest_typdatum; in get_local_type() local631 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()[all …]