HomeSort by: relevance | last modified time | path
    Searched defs:mountpoint (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/librefuse/
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_lowlevel.h 49 char *mountpoint; member in struct:fuse_cmdline_opts
  /src/lib/librefuse/refuse/
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);
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;
  /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...]
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/usr.sbin/sysinst/arch/mac68k/
md.c 254 const char *mountpoint; local in function:md_make_bsd_partitions
287 mountpoint = NULL;
292 mountpoint = (const char*)bzb->mount_point;
297 mountpoint = (const char*)bzb->mount_point;
304 mountpoint = (const char*)bzb->mount_point;
314 info.last_mounted = 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...]

Completed in 14 milliseconds