Searched defs:new_ctx (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libc/amd64/unwind/
H A Dunwind.c245 down_one(struct _Unwind_Context *old_ctx, struct _Unwind_Context *new_ctx) argument
252 new_ctx->pc = 0;
253 new_ctx->cfa = 0;
254 new_ctx->ra = 0;
258 new_ctx->pc = 0;
259 new_ctx->cfa = 0;
260 new_ctx->ra = 0;
264 _Unw_Propagate_Registers(old_ctx, new_ctx);
265 complete_context(new_ctx);
266 new_cfa = new_ctx
[all...]
H A Dcall_frame_inst.c124 * suspended state of the caller (in new_ctx). If the old info
125 * will not be refered to again, old_ctx == new_ctx is OK
129 struct _Unwind_Context *new_ctx)
131 new_ctx->current_regs[SP_RSP] = old_ctx->cfa;
132 new_ctx->pc = old_ctx->ra;
133 new_ctx->current_regs[FP_RBP] = old_ctx->entry_regs[FP_RBP];
134 new_ctx->current_regs[GPR_RBX] = old_ctx->entry_regs[GPR_RBX];
135 new_ctx->current_regs[EIR_R12] = old_ctx->entry_regs[EIR_R12];
136 new_ctx->current_regs[EIR_R13] = old_ctx->entry_regs[EIR_R13];
137 new_ctx
128 _Unw_Propagate_Registers(struct _Unwind_Context *old_ctx, struct _Unwind_Context *new_ctx) argument
[all...]
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dauxprop.c161 struct propctx *new_ctx; local
166 new_ctx = sasl_sun_ALLOC(sizeof(struct propctx));
168 new_ctx = sasl_ALLOC(sizeof(struct propctx));
170 if(!new_ctx) return NULL;
172 if(prop_init(new_ctx, estimate) != SASL_OK) {
173 prop_dispose(&new_ctx);
176 return new_ctx;

Completed in 47 milliseconds