Lines Matching refs:proc
30 struct fetch_context *arch_fetch_arg_init(enum tof type, struct process *proc,
33 struct fetch_context *arch_fetch_arg_clone(struct process *proc,
37 struct process *proc, struct arg_type_info *info,
41 struct process *proc, struct arg_type_info *info,
56 long gimme_arg(enum tof type, struct process *proc, int arg_num,
64 arch_fetch_arg_init(enum tof type, struct process *proc, in arch_fetch_arg_init() argument
71 arch_fetch_arg_clone(struct process *proc, struct fetch_context *context) in arch_fetch_arg_clone() argument
81 struct process *proc, in arch_fetch_arg_next() argument
84 long l = gimme_arg(type, proc, context->argnum++, info); in arch_fetch_arg_next()
91 struct process *proc, in arch_fetch_retval() argument
94 long l = gimme_arg(type, proc, -1, info); in arch_fetch_retval()
121 fetch_arg_init(enum tof type, struct process *proc, in fetch_arg_init() argument
124 return arch_fetch_arg_init(type, proc, ret_info); in fetch_arg_init()
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()
135 struct process *proc, in fetch_arg_next() argument
138 return arch_fetch_arg_next(context, type, proc, info, valuep); in fetch_arg_next()
143 struct process *proc, in fetch_retval() argument
146 return arch_fetch_retval(context, type, proc, info, valuep); in fetch_retval()