Lines Matching defs:bplen
44 int bplen;
48 bp = gdbarch_sw_breakpoint_from_kind (gdbarch, bp_tgt->kind, &bplen);
52 readbuf = (gdb_byte *) alloca (bplen);
53 val = target_read_memory (addr, readbuf, bplen);
64 bp_tgt->shadow_len = bplen;
65 memcpy (bp_tgt->shadow_contents, readbuf, bplen);
67 val = target_write_raw_memory (addr, bp, bplen);
78 int bplen;
80 gdbarch_sw_breakpoint_from_kind (gdbarch, bp_tgt->kind, &bplen);
83 bplen);
109 int bplen;
114 bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &bplen);
122 val = target_read_memory (addr, cur_contents, bplen);
127 return (val == 0 && memcmp (bp, cur_contents, bplen) == 0);