Searched defs:src_ctx (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dkerrs.c102 /* Set the error message state of dest_ctx to that of src_ctx. */
104 krb5_copy_error_message (krb5_context dest_ctx, krb5_context src_ctx) argument
106 if (dest_ctx == src_ctx)
108 if (src_ctx->err.msg) {
109 krb5int_set_error(&dest_ctx->err, src_ctx->err.code, "%s",
110 src_ctx->err.msg);
/osnet-11/usr/src/lib/libsasl/lib/
H A Dauxprop.c182 int prop_dup(struct propctx *src_ctx, struct propctx **dst_ctx) argument
190 if(!src_ctx || !dst_ctx) return SASL_BADPARAM;
192 /* What is the total allocated size of src_ctx? */
193 pool = src_ctx->mem_base;
203 retval->used_values = src_ctx->used_values;
204 retval->allocated_values = src_ctx->used_values + 1;
214 for(i=0; i<src_ctx->used_values; i++) {
215 retval->values[i].name = src_ctx->values[i].name;
217 src_ctx->values[i].values);
222 retval->prev_val = src_ctx
[all...]

Completed in 30 milliseconds