Searched refs:dest_typdatum (Results 1 – 1 of 1) sorted by relevance
623 type_datum_t *dest_typdatum; in get_local_type() local632 dest_typdatum = hashtab_search(types_tab, id); in get_local_type()633 if (!dest_typdatum) { in get_local_type()634 dest_typdatum = (type_datum_t *) malloc(sizeof(type_datum_t)); in get_local_type()635 if (dest_typdatum == NULL) { in get_local_type()639 type_datum_init(dest_typdatum); in get_local_type()640 dest_typdatum->s.value = value; in get_local_type()641 dest_typdatum->flavor = isattr ? TYPE_ATTRIB : TYPE_TYPE; in get_local_type()642 dest_typdatum->primary = 1; in get_local_type()643 if (hashtab_insert(types_tab, id, dest_typdatum)) { in get_local_type()[all …]