| /src/lib/librefuse/refuse/ | 
| v26.c | 43 fuse_mount_v26(const char *mountpoint, struct fuse_args *args) { 50     nominal_fd = fuse_mount_v25(mountpoint, args);
 63 fuse_unmount_v26(const char *mountpoint, struct fuse_chan *ch) {
 67         if (strcmp(mountpoint, fuse_chan_mountpoint(ch)) != 0)
 68             warnx("%s: mountpoint `%s' differs from that was passed to fuse_mount(): %s",
 69                   __func__, mountpoint, fuse_chan_mountpoint(ch));
 74     fuse_unmount_v11(mountpoint);
 95                char **mountpoint, int *multithreaded,
 104     *mountpoint = opts.mountpoint; /* Transfer the ownership of the string. *
 [all...]
 | 
| v22.c | 41                char **mountpoint, int *multithreaded, int *fd) { 54     fuse = fuse_setup_v26(argc, argv, op, op_version, mountpoint, multithreaded, NULL);
 65                   char *mountpoint __attribute__((__unused__))) {
 
 | 
| v11.c | 47 fuse_mount_v11(const char *mountpoint, const char *argv[]) { 65     nominal_fd = fuse_mount_v25(mountpoint, &args);
 74     const char* mountpoint = priv;  local in function:is_same_mountpoint
 76     return strcmp(fuse_chan_mountpoint(chan), mountpoint) == 0;
 116 fuse_unmount_v11(const char *mountpoint) {
 121     /* Search for the fuse_chan having the given mountpoint. It must
 123     chan = fuse_chan_find(is_same_mountpoint, &idx, __UNCONST(mountpoint));
 125         errx(EXIT_FAILURE, "%s: cannot find a channel for the mountpoint: %s",
 126              __func__, mountpoint);
 
 | 
| v25.c | 43 fuse_mount_v25(const char *mountpoint, struct fuse_args *args) { 48     chan = fuse_chan_new(mountpoint, args);
 59 fuse_parse_cmdline_v25(struct fuse_args *args, char **mountpoint,
 66     *mountpoint    = opts.mountpoint; /* Transfer the ownership of the string. */
 
 | 
| v30.c | 40 fuse_mount_v30(struct fuse *fuse, const char *mountpoint) { 41     return __fuse_mount(fuse, mountpoint);
 
 | 
| chan.c | 53     char* mountpoint;  member in struct:fuse_chan 70 struct fuse_chan* fuse_chan_new(const char* mountpoint, const struct fuse_args* args) {
 79     chan->mountpoint = strdup(mountpoint);
 80     if (!chan->mountpoint) {
 89         free(chan->mountpoint);
 99     free(chan->mountpoint);
 232     return chan->mountpoint;
 
 | 
| v11.h | 74 int fuse_mount_v11(const char *mountpoint, const char *argv[]); 77 void fuse_unmount_v11(const char *mountpoint);
 
 | 
| v26.h | 88 struct fuse_chan *fuse_mount_v26(const char *mountpoint, struct fuse_args *args); 91 void fuse_unmount_v26(const char *mountpoint, struct fuse_chan *ch);
 101 							char **mountpoint, int *multithreaded,
 105 void fuse_teardown_v26(struct fuse *fuse, char *mountpoint);
 
 | 
| v21.c | 44 fuse_mount_v21(const char *mountpoint, const char *opts) { 56     nominal_fd = fuse_mount_v25(mountpoint, &args);
 
 | 
| v22.h | 80 							char **mountpoint, int *multithreaded, int *fd); 83 void fuse_teardown_v22(struct fuse *fuse, int fd, char *mountpoint);
 
 | 
| v25.h | 85 int fuse_mount_v25(const char *mountpoint, struct fuse_args *args); 88 int fuse_parse_cmdline_v25(struct fuse_args *args, char **mountpoint,
 
 | 
| chan.h | 58 struct fuse_chan* fuse_chan_new(const char* mountpoint, const struct fuse_args* args); 
 | 
| v21.h | 75 int fuse_mount_v21(const char *mountpoint, const char *opts); 
 | 
| /src/lib/librefuse/ | 
| fuse_lowlevel.h | 49 	char *mountpoint;  member in struct:fuse_cmdline_opts 
 | 
| refuse_compat.c | 50 	char *mountpoint;  member in struct:fuse_cmdline_opts_rev0 56 int fuse_mount(struct fuse *fuse, const char *mountpoint);
 64 void fuse_unmount_compat22(const char *mountpoint);
 101 fuse_mount(struct fuse *fuse, const char *mountpoint) {
 102     return fuse_mount_v30(fuse, mountpoint);
 162 fuse_unmount_compat22(const char *mountpoint) {
 163     fuse_unmount_v11(mountpoint);
 
 | 
| fuse_internal.h | 74 int __fuse_mount(struct fuse *fuse, const char *mountpoint); 
 | 
| refuse_lowlevel.c | 85 		if (opts->mountpoint == NULL) { 86 			return fuse_opt_add_opt(&opts->mountpoint, arg);
 
 | 
| fuse.h | 362 	   char **mountpoint, int *multithreaded, int *fd) { 364 			  mountpoint, multithreaded, fd);
 392 	   char **mountpoint, int *multithreaded, int *fd) {
 394 			  mountpoint, multithreaded, fd);
 422 	   char **mountpoint, int *multithreaded, int *fd) {
 424 			  mountpoint, multithreaded, fd);
 467 	   char **mountpoint, int *multithreaded, void *user_data) {
 469 			  mountpoint, multithreaded, user_data);
 513 	   char **mountpoint, int *multithreaded, void *user_data) {
 515 			  mountpoint, multithreaded, user_data)
 [all...]
 | 
| /src/etc/rc.d/ | 
| random_seed | 35 	df -P "$1" | (while read dev total used avail cap mountpoint; do 36 		case $mountpoint in
 
 | 
| /src/usr.sbin/autofs/ | 
| automount.c | 68 find_statfs(const struct statvfs *mntbuf, int nitems, const char *mountpoint) 73 		if (strcmp(mntbuf[i].f_mntonname, mountpoint) == 0)
 107 	char *mountpoint;  local in function:mount_if_not_already
 115 	mountpoint = node_path(n);
 116 	sb = find_statfs(mntbuf, nitems, mountpoint);
 120 			    "on %s; mounting", mountpoint);
 127 			    "on %s", mountpoint);
 129 			free(mountpoint);
 134 		    mountpoint);
 137 	mount_autofs(from, mountpoint, options, prefix)
 [all...]
 | 
| autounmountd.c | 80 automounted_add(fsid_t fsid, const char *mountpoint) 89 	strlcpy(af->af_mountpoint, mountpoint, sizeof(af->af_mountpoint));
 161 do_unmount(const fsid_t fsid __unused, const char *mountpoint)
 165 	error = unmount(mountpoint, 0);
 169 			    mountpoint, strerror(errno));
 171 			log_warn("cannot unmount %s", mountpoint);
 
 | 
| common.h | 88 struct node *node_find(struct node *, const char *mountpoint); 
 | 
| common.c | 622 	 * mountpoint; only show the child node.  This means the typical, 722  * key [-options] [ [/mountpoint] [-options2] location ... ]
 729  * for key, and the second, for the mountpoint.
 734 	char *key = NULL, *options = NULL, *mountpoint = NULL,  local in function:parse_map_yyin
 817 				if (mountpoint != NULL) {
 818 					log_errx(1, "duplicated mountpoint "
 822 					log_errx(1, "mountpoint out of order "
 825 				mountpoint = checked_strdup(yytext);
 861 			if (mountpoint == NULL)
 862 				mountpoint = checked_strdup("/")
 1105  char *mountpoint = NULL, *map = NULL, *options = NULL;  local in function:parse_master_yyin
 [all...]
 | 
| /src/sbin/mount_puffs/ | 
| mount_puffs.c | 56 	fprintf(stderr, "usage: %s [-o options] program[#source] mountpoint\n", getprogname()); 60 static int show_puffs_mount_args(const char *mountpoint)
 65 	if (mount(MOUNT_PUFFS, mountpoint, MNT_GETARGS, &kargs, sizeof(kargs)) == -1)
 86 					const char *source, const char *mountpoint)
 93 	 * program [-o opts] [source] mountpoint */
 103 	argv[argc++] = mountpoint;
 
 | 
| /src/sbin/dump/ | 
| main.c | 143 	char *mountpoint;  local in function:main 325 	mountpoint = NULL;
 344 			mountpoint = xstrdup(dt->fs_file);
 352 		if (mountpoint == NULL) {
 353 			mountpoint = xstrdup(fsbuf.f_mntonname);
 363 			    mountpoint);
 365 			if (strcmp(mountpoint, fsbuf.f_mntonname) != 0)
 366 				quit("%s is not on %s", argv[i], mountpoint);
 371 	if (mountpoint)
 372 		free(mountpoint);
 [all...]
 |