Lines Matching refs:ds_to_file
3734 static DYNAMIC_STRING ds_to_file; in do_copy_file() local
3737 { "to_file", ARG_STRING, TRUE, &ds_to_file, "Filename to copy to" } in do_copy_file()
3746 if (bad_path(ds_to_file.str)) in do_copy_file()
3749 DBUG_PRINT("info", ("Copy %s to %s", ds_from_file.str, ds_to_file.str)); in do_copy_file()
3751 error= (my_copy(ds_from_file.str, ds_to_file.str, in do_copy_file()
3755 dynstr_free(&ds_to_file); in do_copy_file()
3774 static DYNAMIC_STRING ds_to_file; in do_move_file() local
3777 { "to_file", ARG_STRING, TRUE, &ds_to_file, "Filename to move to" } in do_move_file()
3786 if (bad_path(ds_to_file.str)) in do_move_file()
3789 DBUG_PRINT("info", ("Move %s to %s", ds_from_file.str, ds_to_file.str)); in do_move_file()
3790 error= (my_rename(ds_from_file.str, ds_to_file.str, in do_move_file()
3794 dynstr_free(&ds_to_file); in do_move_file()