Home
last modified time | relevance | path

Searched refs:new_ctx (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/lib/libc/amd64/unwind/
H A Dunwind.c245 down_one(struct _Unwind_Context *old_ctx, struct _Unwind_Context *new_ctx) in down_one() argument
252 new_ctx->pc = 0; in down_one()
253 new_ctx->cfa = 0; in down_one()
254 new_ctx->ra = 0; in down_one()
258 new_ctx->pc = 0; in down_one()
259 new_ctx->cfa = 0; in down_one()
260 new_ctx->ra = 0; in down_one()
264 _Unw_Propagate_Registers(old_ctx, new_ctx); in down_one()
265 complete_context(new_ctx); in down_one()
266 new_cfa = new_ctx->cfa; in down_one()
[all …]
H A Dcall_frame_inst.c129 struct _Unwind_Context *new_ctx) in _Unw_Propagate_Registers() argument
131 new_ctx->current_regs[SP_RSP] = old_ctx->cfa; in _Unw_Propagate_Registers()
132 new_ctx->pc = old_ctx->ra; in _Unw_Propagate_Registers()
133 new_ctx->current_regs[FP_RBP] = old_ctx->entry_regs[FP_RBP]; in _Unw_Propagate_Registers()
134 new_ctx->current_regs[GPR_RBX] = old_ctx->entry_regs[GPR_RBX]; in _Unw_Propagate_Registers()
135 new_ctx->current_regs[EIR_R12] = old_ctx->entry_regs[EIR_R12]; in _Unw_Propagate_Registers()
136 new_ctx->current_regs[EIR_R13] = old_ctx->entry_regs[EIR_R13]; in _Unw_Propagate_Registers()
137 new_ctx->current_regs[EIR_R14] = old_ctx->entry_regs[EIR_R14]; in _Unw_Propagate_Registers()
138 new_ctx->current_regs[EIR_R15] = old_ctx->entry_regs[EIR_R15]; in _Unw_Propagate_Registers()
H A Dunwind_context.h138 struct _Unwind_Context *new_ctx);
/titanic_41/usr/src/lib/libsasl/lib/
H A Dauxprop.c161 struct propctx *new_ctx; in prop_new() local
166 new_ctx = sasl_sun_ALLOC(sizeof(struct propctx)); in prop_new()
168 new_ctx = sasl_ALLOC(sizeof(struct propctx)); in prop_new()
170 if(!new_ctx) return NULL; in prop_new()
172 if(prop_init(new_ctx, estimate) != SASL_OK) { in prop_new()
173 prop_dispose(&new_ctx); in prop_new()
176 return new_ctx; in prop_new()