Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libc/amd64/unwind/
H A Dunwind.c251 new_ctx->pc = 0; in down_one()
252 new_ctx->cfa = 0; in down_one()
253 new_ctx->ra = 0; in down_one()
257 new_ctx->pc = 0; in down_one()
258 new_ctx->cfa = 0; in down_one()
259 new_ctx->ra = 0; in down_one()
264 complete_context(new_ctx); in down_one()
265 new_cfa = new_ctx->cfa; in down_one()
267 new_ctx->pc = 0; in down_one()
268 new_ctx->cfa = 0; in down_one()
[all …]
H A Dcall_frame_inst.c130 struct _Unwind_Context *new_ctx) in _Unw_Propagate_Registers() argument
132 new_ctx->current_regs[SP_RSP] = old_ctx->cfa; in _Unw_Propagate_Registers()
133 new_ctx->pc = old_ctx->ra; in _Unw_Propagate_Registers()
134 new_ctx->current_regs[FP_RBP] = old_ctx->entry_regs[FP_RBP]; in _Unw_Propagate_Registers()
135 new_ctx->current_regs[GPR_RBX] = old_ctx->entry_regs[GPR_RBX]; in _Unw_Propagate_Registers()
136 new_ctx->current_regs[EIR_R12] = old_ctx->entry_regs[EIR_R12]; in _Unw_Propagate_Registers()
137 new_ctx->current_regs[EIR_R13] = old_ctx->entry_regs[EIR_R13]; in _Unw_Propagate_Registers()
138 new_ctx->current_regs[EIR_R14] = old_ctx->entry_regs[EIR_R14]; in _Unw_Propagate_Registers()
139 new_ctx->current_regs[EIR_R15] = old_ctx->entry_regs[EIR_R15]; in _Unw_Propagate_Registers()
H A Dunwind_context.h136 struct _Unwind_Context *new_ctx);
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dauxprop.c160 struct propctx *new_ctx; in prop_new() local
165 new_ctx = sasl_sun_ALLOC(sizeof(struct propctx)); in prop_new()
167 new_ctx = sasl_ALLOC(sizeof(struct propctx)); in prop_new()
169 if(!new_ctx) return NULL; in prop_new()
171 if(prop_init(new_ctx, estimate) != SASL_OK) { in prop_new()
172 prop_dispose(&new_ctx); in prop_new()
175 return new_ctx; in prop_new()