Searched refs:the_target (Results 1 – 11 of 11) sorted by relevance
/openbsd/gnu/usr.bin/binutils/gdb/gdbserver/ |
H A D | target.h | 138 extern struct target_ops *the_target; 143 (*the_target->create_inferior) (program, args) 146 (*the_target->attach) (pid) 149 (*the_target->kill) () 152 (*the_target->detach) () 155 (*the_target->thread_alive) (pid) 158 (*the_target->fetch_registers) (regno) 161 (*the_target->store_registers) (regno)
|
H A D | target.c | 26 struct target_ops *the_target; variable 64 res = (*the_target->read_memory) (memaddr, myaddr, len); in read_inferior_memory() 84 res = (*the_target->write_memory) (memaddr, buffer, len); in write_inferior_memory() 99 ret = (*the_target->wait) (statusp); in mywait() 110 the_target = (struct target_ops *) malloc (sizeof (*the_target)); in set_target_ops() 111 memcpy (the_target, target, sizeof (*the_target)); in set_target_ops()
|
H A D | mem-break.c | 62 (*the_target->read_memory) (where, bp->old_data, in set_breakpoint_at() 64 (*the_target->write_memory) (where, breakpoint_data, in set_breakpoint_at() 82 (*the_target->write_memory) (bp->pc, bp->old_data, in delete_breakpoint() 93 (*the_target->write_memory) (bp->pc, bp->old_data, in delete_breakpoint() 130 (*the_target->write_memory) (orig_bp->pc, breakpoint_data, in reinsert_breakpoint_handler() 152 (*the_target->write_memory) (orig_bp->pc, orig_bp->old_data, in reinsert_breakpoint_by_bp() 166 (*the_target->write_memory) (bp->pc, bp->old_data, in uninsert_breakpoint() 182 (*the_target->write_memory) (bp->pc, breakpoint_data, in reinsert_breakpoint()
|
H A D | server.c | 95 if (the_target->look_up_symbols != NULL) in handle_query() 96 (*the_target->look_up_symbols) (); in handle_query() 125 if (the_target->read_auxv != NULL in handle_query() 135 n = (*the_target->read_auxv) (ofs, data, len); in handle_query() 240 (*the_target->resume) (resume_info); in handle_v_cont() 297 (*the_target->resume) (resume_info); in myresume()
|
H A D | linux-arm-low.c | 78 (*the_target->read_memory) (where, (char *) &insn, 4); in arm_breakpoint_at()
|
H A D | linux-sh-low.c | 84 (*the_target->read_memory) (where, (char *) &insn, 2); in sh_breakpoint_at()
|
H A D | linux-mips-low.c | 134 (*the_target->read_memory) (where, (char *) &insn, 4); in mips_breakpoint_at()
|
H A D | linux-ppc-low.c | 96 (*the_target->read_memory) (where, (char *) &insn, 4); in ppc_breakpoint_at()
|
H A D | proc-service.c | 126 the_target->fetch_registers (0); in ps_lgetregs()
|
H A D | remote-utils.c | 340 (*the_target->send_signal) (SIGINT); in putpkt() 378 (*the_target->send_signal) (SIGINT); in input_interrupt()
|
H A D | ChangeLog | 64 back return status from the_target->read_memory().
|