Lines Matching defs:source
163 static int add_mount(const char *source, const char *mnt, const char *type,
166 return fuse_mnt_add_mount(progname, source, mnt, type, opts);
196 static int add_mount(const char *source, const char *mnt, const char *type,
199 (void) source;
348 char *source = NULL;
411 source = malloc((fsname ? strlen(fsname) : 0) + strlen(dev) + 32);
414 if (!type || !source) {
422 strcpy(source, fsname);
424 strcpy(source, dev);
429 res = mount(source, mnt, type, flags, optbuf);
433 res = mount(source, mnt, type, flags, optbuf);
452 *sourcep = source;
461 free(source);
600 char *source = NULL;
621 &source, &mnt_opts);
644 res = add_mount(source, mnt, type, mnt_opts);
655 free(source);