Lines Matching refs:cbdata
1500 struct load_section_data cbdata; in generic_load() local
1503 cbdata.load_offset = 0; /* Offset to add to vma for each section. */ in generic_load()
1504 cbdata.write_count = 0; /* Number of writes needed. */ in generic_load()
1505 cbdata.data_count = 0; /* Number of bytes written to target memory. */ in generic_load()
1506 cbdata.total_size = 0; /* Total size of all bfd sectors. */ in generic_load()
1518 cbdata.load_offset = strtoul (offptr, &endptr, 0); in generic_load()
1524 cbdata.load_offset = 0; in generic_load()
1546 (void *) &cbdata.total_size); in generic_load()
1550 bfd_map_over_sections (loadfile_bfd, load_section_callback, &cbdata); in generic_load()
1558 ui_out_field_fmt (uiout, "load-size", "%lu", cbdata.data_count); in generic_load()
1570 print_transfer_performance (gdb_stdout, cbdata.data_count, in generic_load()
1571 cbdata.write_count, end_time - start_time); in generic_load()