Lines Matching refs:dest_union
78 gss_union_name_t src_union, dest_union;
93 dest_union = (gss_union_name_t)malloc(sizeof (gss_union_name_desc));
94 if (!dest_union)
97 dest_union->mech_type = 0;
98 dest_union->mech_name = 0;
99 dest_union->name_type = 0;
100 dest_union->external_name = 0;
104 &dest_union->external_name, 0))
110 &dest_union->name_type);
123 &dest_union->mech_type);
130 dest_union->mech_type,
131 dest_union,
132 &dest_union->mech_name);
138 *dest_name = (gss_name_t)dest_union;
142 if (dest_union) {
143 if (dest_union->external_name) {
144 if (dest_union->external_name->value)
145 free(dest_union->external_name->value);
146 free(dest_union->external_name);
148 if (dest_union->name_type)
150 &dest_union->name_type);
151 if (dest_union->mech_name)
153 dest_union->mech_type,
154 &dest_union->mech_name);
155 if (dest_union->mech_type)
157 &dest_union->mech_type);
158 free(dest_union);