Home
last modified time | relevance | path

Searched refs:nr_bytes (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dremote-sim.c305 int nr_bytes; in gdbsim_fetch_register() local
315 int nr_bytes; in gdbsim_fetch_register() local
318 nr_bytes = sim_fetch_register (gdbsim_desc, in gdbsim_fetch_register()
321 if (nr_bytes > 0 && nr_bytes != register_size (current_gdbarch, regno) && warn_user) in gdbsim_fetch_register()
327 nr_bytes, register_size (current_gdbarch, regno)); in gdbsim_fetch_register()
360 int nr_bytes; in gdbsim_store_register() local
362 nr_bytes = sim_store_register (gdbsim_desc, in gdbsim_store_register()
365 if (nr_bytes > 0 && nr_bytes != register_size (current_gdbarch, regno)) in gdbsim_store_register()
H A Dremote.c3583 int nr_bytes; in remote_write_bytes() local
3650 for (nr_bytes = 0; in remote_write_bytes()
3651 (nr_bytes < todo) && (p - payload_start) < payload_size; in remote_write_bytes()
3652 nr_bytes++) in remote_write_bytes()
3654 switch (myaddr[nr_bytes] & 0xff) in remote_write_bytes()
3661 *p++ = (myaddr[nr_bytes] & 0xff) ^ 0x20; in remote_write_bytes()
3664 *p++ = myaddr[nr_bytes] & 0xff; in remote_write_bytes()
3668 if (nr_bytes < todo) in remote_write_bytes()
3674 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen); in remote_write_bytes()
3682 nr_bytes = bin2hex (myaddr, p, todo); in remote_write_bytes()
[all …]
H A Dgdbarch.h634 typedef int (gdbarch_register_bytes_ok_ftype) (long nr_bytes);
635 extern int gdbarch_register_bytes_ok (struct gdbarch *gdbarch, long nr_bytes);
641 #define REGISTER_BYTES_OK(nr_bytes) (gdbarch_register_bytes_ok (current_gdbarch, nr_bytes)) argument
H A Dd10v-tdep.c1044 CORE_ADDR memaddr, int nr_bytes, in remote_d10v_translate_xfer_address() argument
1050 out_len = sim_d10v_translate_addr (memaddr, nr_bytes, &out_addr, regcache, in remote_d10v_translate_xfer_address()
H A Dgdbarch.sh489 F:=:int:register_bytes_ok:long nr_bytes:nr_bytes
H A Dgdbarch.c1446 XSTRING (REGISTER_BYTES_OK (nr_bytes))); in gdbarch_dump()
2538 gdbarch_register_bytes_ok (struct gdbarch *gdbarch, long nr_bytes) in gdbarch_register_bytes_ok() argument
2544 return gdbarch->register_bytes_ok (nr_bytes); in gdbarch_register_bytes_ok()
H A Dia64-tdep.c3236 CORE_ADDR memaddr, int nr_bytes, in ia64_remote_translate_xfer_address() argument
3240 *targ_len = nr_bytes; in ia64_remote_translate_xfer_address()
H A DChangeLog-20015530 (remote_write_bytes): Set nr_bytes to return value of bin2hex.
5551 * remote.c (remote_write_bytes): Set nr_bytes before returning it.
H A DChangeLog-2000572 initializing ``todo''. Ditto for ``nr_bytes''.
/openbsd-src/gnu/usr.bin/binutils/include/gdb/
H A Dsim-d10v.h59 int nr_bytes,
66 int nr_bytes,
73 int nr_bytes,
/openbsd-src/gnu/usr.bin/binutils/gdb/mi/
H A Dmi-main.c771 int nr_bytes; in mi_cmd_data_read_memory() local
862 nr_bytes = 0; in mi_cmd_data_read_memory()
863 while (nr_bytes < total_bytes) in mi_cmd_data_read_memory()
866 long num = target_read_memory_partial (addr + nr_bytes, mbuf + nr_bytes, in mi_cmd_data_read_memory()
867 total_bytes - nr_bytes, in mi_cmd_data_read_memory()
871 nr_bytes += num; in mi_cmd_data_read_memory()
876 ui_out_field_int (uiout, "nr-bytes", nr_bytes); in mi_cmd_data_read_memory()
906 if (col_byte + word_size > nr_bytes) in mi_cmd_data_read_memory()
925 if (byte >= nr_bytes) in mi_cmd_data_read_memory()