Lines Matching refs:args

337 dump_srec_memory (char *args, int from_tty)  in dump_srec_memory()  argument
339 dump_memory_to_file (args, FOPEN_WB, "srec"); in dump_srec_memory()
343 dump_srec_value (char *args, int from_tty) in dump_srec_value() argument
345 dump_value_to_file (args, FOPEN_WB, "srec"); in dump_srec_value()
349 dump_ihex_memory (char *args, int from_tty) in dump_ihex_memory() argument
351 dump_memory_to_file (args, FOPEN_WB, "ihex"); in dump_ihex_memory()
355 dump_ihex_value (char *args, int from_tty) in dump_ihex_value() argument
357 dump_value_to_file (args, FOPEN_WB, "ihex"); in dump_ihex_value()
361 dump_tekhex_memory (char *args, int from_tty) in dump_tekhex_memory() argument
363 dump_memory_to_file (args, FOPEN_WB, "tekhex"); in dump_tekhex_memory()
367 dump_tekhex_value (char *args, int from_tty) in dump_tekhex_value() argument
369 dump_value_to_file (args, FOPEN_WB, "tekhex"); in dump_tekhex_value()
373 dump_binary_memory (char *args, int from_tty) in dump_binary_memory() argument
375 dump_memory_to_file (args, FOPEN_WB, "binary"); in dump_binary_memory()
379 dump_binary_value (char *args, int from_tty) in dump_binary_value() argument
381 dump_value_to_file (args, FOPEN_WB, "binary"); in dump_binary_value()
385 append_binary_memory (char *args, int from_tty) in append_binary_memory() argument
387 dump_memory_to_file (args, FOPEN_AB, "binary"); in append_binary_memory()
391 append_binary_value (char *args, int from_tty) in append_binary_value() argument
393 dump_value_to_file (args, FOPEN_AB, "binary"); in append_binary_value()
403 call_dump_func (struct cmd_list_element *c, char *args, int from_tty) in call_dump_func() argument
406 d->func (args, d->mode); in call_dump_func()
410 add_dump_command (char *name, void (*func) (char *args, char *mode), in add_dump_command() argument
457 restore_section_callback (bfd *ibfd, asection *isec, void *args) in restore_section_callback() argument
459 struct callback_data *data = args; in restore_section_callback()
572 restore_command (char *args, int from_tty) in restore_command() argument
587 filename = scan_filename_with_cleanup (&args, NULL); in restore_command()
588 if (args != NULL && *args != '\0') in restore_command()
593 if (strncmp (args, binary_string, strlen (binary_string)) == 0) in restore_command()
596 args += strlen (binary_string); in restore_command()
597 args = skip_spaces (args); in restore_command()
600 if (args != NULL && *args != '\0') in restore_command()
602 parse_and_eval_long (scan_expression_with_cleanup (&args, NULL)); in restore_command()
603 if (args != NULL && *args != '\0') in restore_command()
607 parse_and_eval_long (scan_expression_with_cleanup (&args, NULL)); in restore_command()
608 if (args != NULL && *args != '\0') in restore_command()
611 data.load_end = parse_and_eval_long (args); in restore_command()