Lines Matching defs:out_path
113 const char *out_path)
137 if (strcmp(out_path, "-")) {
138 ei->out_fd = open(out_path, O_CREAT | O_TRUNC | O_RDWR, 0664);
145 exfat_err("failed to open %s: %s\n", out_path,
901 const char *in_path, *out_path = NULL, *blkdev_path;
913 out_path = optarg;
927 if (!(optind == argc - 1 && out_path) &&
928 !(optind == argc - 2 && !out_path))
932 if (!out_path)
933 out_path = argv[optind++];
937 blkdev_path = out_path;
964 err = create_exfat2img(&ei, bs, out_path);
1003 exfat_err("failed to fsync %s. %d\n", out_path, errno);