Lines Matching refs:dest_typdatum
516 type_datum_t *dest_typdatum; in get_local_type() local
525 dest_typdatum = hashtab_search(types_tab, id); in get_local_type()
526 if (!dest_typdatum) { in get_local_type()
527 dest_typdatum = (type_datum_t *) malloc(sizeof(type_datum_t)); in get_local_type()
528 if (dest_typdatum == NULL) { in get_local_type()
532 type_datum_init(dest_typdatum); in get_local_type()
533 dest_typdatum->s.value = value; in get_local_type()
534 dest_typdatum->flavor = isattr ? TYPE_ATTRIB : TYPE_TYPE; in get_local_type()
535 dest_typdatum->primary = 1; in get_local_type()
536 if (hashtab_insert(types_tab, id, dest_typdatum)) { in get_local_type()
538 type_datum_destroy(dest_typdatum); in get_local_type()
539 free(dest_typdatum); in get_local_type()
545 if (dest_typdatum->flavor != isattr ? TYPE_ATTRIB : TYPE_TYPE) { in get_local_type()
549 return dest_typdatum; in get_local_type()