Lines Matching refs:process
73 void trace_set_options(struct process *proc);
89 void get_arch_dep(struct process *proc);
98 void *get_instruction_pointer(struct process *proc);
101 void set_instruction_pointer(struct process *proc, void *addr);
104 void *get_stack_pointer(struct process *proc);
108 void *get_return_addr(struct process *proc, void *stack_pointer);
111 void enable_breakpoint(struct process *proc, struct breakpoint *sbp);
114 void disable_breakpoint(struct process *proc, struct breakpoint *sbp);
121 int syscall_p(struct process *proc, int status, int *sysnum);
135 void continue_after_syscall(struct process *proc, int sysnum, int ret_p);
139 void continue_after_breakpoint(struct process *proc, struct breakpoint *sbp);
145 void continue_after_vfork(struct process *proc);
149 void continue_after_exec(struct process *proc);
174 size_t umovebytes(struct process *proc, arch_addr_t addr,
182 void *sym2addr(struct process *proc, struct library_symbol *sym);
193 int linkmap_init(struct process *proc, arch_addr_t dyn_addr);
202 void process_removed(struct process *proc);
209 int process_get_entry(struct process *proc,
236 int os_breakpoint_init(struct process *proc, struct breakpoint *sbp);
245 int arch_breakpoint_init(struct process *proc, struct breakpoint *sbp);
289 int os_process_init(struct process *proc);
290 void os_process_destroy(struct process *proc);
291 int os_process_clone(struct process *retp, struct process *proc);
292 int os_process_exec(struct process *proc);
300 int arch_process_init(struct process *proc);
301 void arch_process_destroy(struct process *proc);
302 int arch_process_clone(struct process *retp, struct process *proc);
303 int arch_process_exec(struct process *proc);
335 enum plt_status os_elf_add_plt_entry(struct process *proc, struct ltelf *lte,
342 enum plt_status arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte,
358 enum plt_status os_elf_add_func_entry(struct process *proc, struct ltelf *lte,
366 enum plt_status arch_elf_add_func_entry(struct process *proc, struct ltelf *lte,
374 void arch_dynlink_done(struct process *proc);
378 void arch_symbol_ret(struct process *proc, struct library_symbol *libsym);
388 int arch_find_dl_debug(struct process *proc, arch_addr_t dyn_addr,
452 enum sw_singlestep_status arch_sw_singlestep(struct process *proc,