/src/lib/libperfuse/ |
perfuse.h | 42 #define mount(source, mnt, type, flags, optbuf) \ macro
|
/src/distrib/alpha/rz25dist/ |
Makefile | 23 mount-fs: 31 mount /dev/${DESTDISK}a ${DESTDIR} 33 mount /dev/${DESTDISK}d ${DESTDIR}/usr 69 diskimage.gz: mount-fs build-fs unmount-fs 70 mount /dev/${DESTDISK}a ${DESTDIR} 71 mount /dev/${DESTDISK}d ${DESTDIR}/usr 82 bin.tar.gz: mount-fs build-fs 88 etc.tar.gz: mount-fs build-fs 92 x11.tar.gz: mount-fs build-fs 101 /bin/rm -f mount-fs build-fs unmount-f [all...] |
/src/sbin/fsck_v7fs/ |
fsck_v7fs.c | 187 struct v7fs_mount_device mount; local in function:main 188 mount.device.fd = fd; 189 mount.endian = endian; 190 mount.sectors = part_sectors; 191 int error = v7fs_fsck(&mount, fsck_flags);
|
/src/usr.bin/pmap/ |
pmap.h | 51 #include <sys/mount.h> 132 struct mount mount; member in union:kbit::__anon7865a5be020a
|
/src/distrib/evbsh3/rom/ramdiskeb/ |
Makefile | 23 MOUNT?= mount 46 ${MOUNT} ${VND_DEV} ${MOUNT_POINT} 75 mount: target 78 ${MOUNT} ${VND_DEV} ${MOUNT_POINT}
|
/src/distrib/evbsh3/rom/ramdiskel/ |
Makefile | 23 MOUNT?= mount 46 ${MOUNT} ${VND_DEV} ${MOUNT_POINT} 75 mount: target 78 ${MOUNT} ${VND_DEV} ${MOUNT_POINT}
|
/src/sys/fs/v7fs/ |
v7fs_vfsops.c | 44 #include <sys/mount.h> 72 static int v7fs_mountfs(struct vnode *, struct mount *, int); 73 static int v7fs_openfs(struct vnode *, struct mount *, struct lwp *); 74 static void v7fs_closefs(struct vnode *, struct mount *); 79 v7fs_mount(struct mount *mp, const char *path, void *data, size_t *data_len) 116 DPRINTF("mount device=%lx\n", (long)devvp->v_rdev); 130 * used for our initial mount 147 * If mount by non-root, then verify that user has necessary 150 * Permission to update a mount is checked higher, so here we presume 151 * updating the mount is okay (for example, as far as securelevel goes 255 struct v7fs_mount_device mount; local in function:v7fs_mountfs [all...] |
/src/usr.sbin/pstat/ |
pstat.c | 56 #include <sys/mount.h> 167 struct mount * 168 getmnt(struct mount *); 173 void mount_print(struct mount *); 304 struct mount *maddr, *mp; 491 "vnode's mount point"); 631 * Given a pointer to a mount structure in kernel space, 634 struct mount * 635 getmnt(struct mount *maddr) 639 struct mount *maddr 640 struct mount mount; member in struct:getmnt::mtab [all...] |
/src/usr.sbin/sysinst/ |
bsddisklabel.c | 72 .mount = PART_BOOT_MOUNT, 96 .mount = PART_BOOT1_MOUNT, 115 .mount = PART_BOOT2_MOUNT, 132 { .size = DEFROOTSIZE*(MEG/512), .mount = "/", .type = PT_root, 140 { .type = PT_root, .mount = "/tmp", .fs_type = FS_TMPFS, 143 { .type = PT_root, .mount = "/tmp", .fs_type = FS_MFS, 146 { .def_size = DEFUSRSIZE*(MEG/512), .mount = "/usr", .type = PT_root, 148 { .def_size = DEFVARSIZE*(MEG/512), .mount = "/var", .type = PT_root, 227 const char *mount; local in function:draw_size_menu_line 255 mount = swap [all...] |
mbr.c | 626 const char *mount = get_last_mounted( local in function:read_mbr 631 char *p = strdup(mount);
|
defs.h | 297 char mount[MOUNTLEN]; /* where will we mount this? */ member in struct:part_usage_info 321 #define PUIMNT_ASYNC 0x0001 /* mount -o async */ 322 #define PUIMNT_NOATIME 0x0002 /* mount -o noatime */ 323 #define PUIMNT_NODEV 0x0004 /* mount -o nodev */ 324 #define PUIMNT_NODEVMTIME 0x0008 /* mount -o nodevmtime */ 325 #define PUIMNT_NOEXEC 0x0010 /* mount -o noexec */ 326 #define PUIMNT_NOSUID 0x0020 /* mount -o nosuid */ 327 #define PUIMNT_LOG 0x0040 /* mount -o log */ 331 #define PUIINST_MOUNT 0x0002 /* need to mount partition * [all...] |
/src/sys/sys/ |
mount.h | 1 /* $NetBSD: mount.h,v 1.241 2023/04/22 14:30:54 hannken Exp $ */ 31 * @(#)mount.h 8.21 (Berkeley) 5/20/95 136 struct mount { struct 143 struct mount *mnt_lower; /* fs mounted on */ 166 TAILQ_HEAD(, vnode_impl) mnt_vnodelist; /* list of vnodes this mount */ 189 int (*vfs_mount) (struct mount *, const char *, void *, 191 int (*vfs_start) (struct mount *, int); 192 int (*vfs_unmount) (struct mount *, int); 193 int (*vfs_root) (struct mount *, int, struct vnode **); 194 int (*vfs_quotactl) (struct mount *, struct quotactl_args *) [all...] |
/src/usr.bin/fstat/ |
fstat.c | 61 #include <sys/mount.h> 164 static char *getmnton(struct mount *); 299 "USER CMD PID FD MOUNT INUM MODE %s R/W", 865 dprintf("can't read mount struct at %p for pid %d", de.de_pmp, 882 struct mount mount; local in function:layer_filestat 891 if (!KVM_READ(vp->v_mount, &mount, sizeof(struct mount))) { 892 dprintf("can't read mount struct at %p for pid %d", 902 fsp->fsid = mount.mnt_stat.f_fsidx.__fsid_val[0] 909 static struct mount mount; local in function:getmnton [all...] |
/src/sys/arch/arc/arc/ |
arcbios.h | 308 arc_status_t (*mount)( /* Mount 30 */ member in struct:arc_calls
|