Lines Matching defs:popts
240 const struct ntfs_options *popts, BOOL low_fuse)
243 const char *orig_opts = popts->options;
567 if (ntfs_strappend(&ret, popts->device))
595 int ntfs_parse_options(struct ntfs_options *popts, void (*usage)(void),
615 if (!popts->device) {
616 popts->device = ntfs_malloc(PATH_MAX + 1);
617 if (!popts->device)
621 popts->arg_device = optarg;
623 popts->device)) {
626 free(popts->device);
627 popts->device = NULL;
630 } else if (!popts->mnt_point) {
631 popts->mnt_point = optarg;
640 if (popts->options)
641 if (ntfs_strappend(&popts->options, ","))
643 if (ntfs_strappend(&popts->options, optarg))
676 if (!popts->device) {
680 if (!popts->mnt_point) {