Lines Matching refs:dest_roledatum
562 role_datum_t *dest_roledatum; in get_local_role() local
574 dest_roledatum = hashtab_search(roles_tab, id); in get_local_role()
575 if (!dest_roledatum) { in get_local_role()
576 dest_roledatum = (role_datum_t *)malloc(sizeof(role_datum_t)); in get_local_role()
577 if (dest_roledatum == NULL) { in get_local_role()
582 role_datum_init(dest_roledatum); in get_local_role()
583 dest_roledatum->s.value = value; in get_local_role()
584 dest_roledatum->flavor = isattr ? ROLE_ATTRIB : ROLE_ROLE; in get_local_role()
586 if (hashtab_insert(roles_tab, id, dest_roledatum)) { in get_local_role()
588 role_datum_destroy(dest_roledatum); in get_local_role()
589 free(dest_roledatum); in get_local_role()
594 if (dest_roledatum->flavor != isattr ? ROLE_ATTRIB : ROLE_ROLE) in get_local_role()
598 return dest_roledatum; in get_local_role()