Lines Matching refs:context

34 					   struct fetch_context *context);
44 void arch_fetch_arg_done(struct fetch_context *context);
47 int arch_fetch_param_pack_start(struct fetch_context *context,
50 void arch_fetch_param_pack_end(struct fetch_context *context);
71 arch_fetch_arg_clone(struct process *proc, struct fetch_context *context) in arch_fetch_arg_clone() argument
76 return memcpy(ret, context, sizeof(*ret)); in arch_fetch_arg_clone()
80 arch_fetch_arg_next(struct fetch_context *context, enum tof type, in arch_fetch_arg_next() argument
84 long l = gimme_arg(type, proc, context->argnum++, info); in arch_fetch_arg_next()
90 arch_fetch_retval(struct fetch_context *context, enum tof type, in arch_fetch_retval() argument
100 arch_fetch_arg_done(struct fetch_context *context) in arch_fetch_arg_done() argument
102 free(context); in arch_fetch_arg_done()
108 arch_fetch_param_pack_start(struct fetch_context *context, in arch_fetch_param_pack_start() argument
115 arch_fetch_param_pack_end(struct fetch_context *context) in arch_fetch_param_pack_end() argument
128 fetch_arg_clone(struct process *proc, struct fetch_context *context) in fetch_arg_clone() argument
130 return arch_fetch_arg_clone(proc, context); in fetch_arg_clone()
134 fetch_arg_next(struct fetch_context *context, enum tof type, in fetch_arg_next() argument
138 return arch_fetch_arg_next(context, type, proc, info, valuep); in fetch_arg_next()
142 fetch_retval(struct fetch_context *context, enum tof type, in fetch_retval() argument
146 return arch_fetch_retval(context, type, proc, info, valuep); in fetch_retval()
150 fetch_arg_done(struct fetch_context *context) in fetch_arg_done() argument
152 return arch_fetch_arg_done(context); in fetch_arg_done()
156 fetch_param_pack_start(struct fetch_context *context, in fetch_param_pack_start() argument
159 return arch_fetch_param_pack_start(context, ppflavor); in fetch_param_pack_start()
163 fetch_param_pack_end(struct fetch_context *context) in fetch_param_pack_end() argument
165 return arch_fetch_param_pack_end(context); in fetch_param_pack_end()