Lines Matching refs:mountpoint
153 if (!opts->mountpoint) {
155 return fuse_opt_add_opt(&opts->mountpoint, arg);
158 char mountpoint[PATH_MAX] = "";
159 if (realpath(arg, mountpoint) == NULL) {
165 return fuse_opt_add_opt(&opts->mountpoint, mountpoint);
328 printf("usage: %s [options] <mountpoint>\n\n",
338 !opts.mountpoint) {
339 fuse_log(FUSE_LOG_ERR, "error: no mountpoint specified\n");
351 if (fuse_mount(fuse,opts.mountpoint) != 0) {
392 free(opts.mountpoint);
461 int fuse_open_channel(const char *mountpoint, const char* options)
473 fd = fuse_kern_mount(mountpoint, opts);