Searched refs:mount (Results 1 - 25 of 47) sorted by relevance

12

/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dmount.c15 int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len);
19 mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len)
/haiku-fatelf/src/tools/fs_shell/
H A Dvfs.cpp55 #define HAS_FS_MOUNT_CALL(mount, op) (mount->volume->ops->op != NULL)
58 vnode->ops->op(vnode->mount->volume, vnode, params)
60 vnode->ops->op(vnode->mount->volume, vnode)
61 #define FS_MOUNT_CALL(mount, op, params...) \
62 mount->volume->ops->op(mount->volume, params)
63 #define FS_MOUNT_CALL_NO_PARAMS(mount, op) \
64 mount->volume->ops->op(mount
81 struct fs_mount *mount; member in struct:FSShell::vnode
405 struct fs_mount *mount = (fs_mount *)_m; local
418 struct fs_mount *mount = (fs_mount *)_m; local
446 struct fs_mount *mount = find_mount(id); local
464 put_mount(struct fs_mount *mount) argument
569 add_vnode_to_mount_list(struct vnode *vnode, struct fs_mount *mount) argument
580 remove_vnode_from_mount_list(struct vnode *vnode, struct fs_mount *mount) argument
881 disconnect_mount_or_vnode_fds(struct fs_mount *mount, struct vnode *vnodeToDisconnect) argument
985 struct fs_mount *mount = vnode->mount; local
1664 get_new_fd(int type, struct fs_mount *mount, struct vnode *vnode, void *cookie, int openMode, bool kernel) argument
4254 struct fs_mount *mount; local
4290 struct fs_mount *mount = descriptor->u.mount; local
4304 struct fs_mount *mount = descriptor->u.mount; local
4318 struct fs_mount *mount = descriptor->u.mount; local
4330 struct fs_mount *mount = descriptor->u.mount; local
4344 struct fs_mount *mount; local
4368 struct fs_mount *mount; local
4391 struct fs_mount *mount; local
4418 struct fs_mount *mount; local
4454 struct fs_mount *mount = descriptor->u.mount; local
4468 struct fs_mount *mount = descriptor->u.mount; local
4482 struct fs_mount *mount = descriptor->u.mount; local
4494 struct fs_mount *mount = descriptor->u.mount; local
4511 struct fs_mount *mount; local
4689 struct fs_mount *mount; local
4824 struct fs_mount *mount; local
4883 struct fs_mount *mount; local
4915 struct fs_mount *mount; local
4933 struct fs_mount *mount = NULL; local
[all...]
H A Dfd.h54 struct fs_mount* mount; member in union:FSShell::file_descriptor::__anon6116
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/mkbfs/
H A Dmkbfs.cpp50 vnode *mount; member in struct:nspace
142 struct nspace *mount = (nspace *)malloc(sizeof(nspace)); local
143 if (add_nspace(mount, NULL, "bfs", -1, -1) < B_OK) {
144 fprintf(stderr, "%s: add mount structure failed\n", programName);
148 Volume volume(mount->nsid);
155 remove_nspace(mount);
/haiku-fatelf/src/system/kernel/fs/
H A Dvfs.cpp79 #define HAS_FS_MOUNT_CALL(mount, op) (mount->volume->ops->op != NULL)
84 vnode->ops->op(vnode->mount->volume, vnode, params) \
88 vnode->ops->op(vnode->mount->volume, vnode) \
90 # define FS_MOUNT_CALL(mount, op, params...) \
91 ( HAS_FS_MOUNT_CALL(mount, op) ? \
92 mount->volume->ops->op(mount->volume, params) \
94 # define FS_MOUNT_CALL_NO_PARAMS(mount, op) \
95 ( HAS_FS_MOUNT_CALL(mount, o
647 struct fs_mount* mount = (fs_mount*)_m; local
660 struct fs_mount* mount = (fs_mount*)_m; local
685 struct fs_mount* mount; local
707 put_mount(struct fs_mount* mount) argument
837 add_vnode_to_mount_list(struct vnode* vnode, struct fs_mount* mount) argument
845 remove_vnode_from_mount_list(struct vnode* vnode, struct fs_mount* mount) argument
1823 replace_vnode_if_disconnected(struct fs_mount* mount, struct vnode* vnodeToDisconnect, struct vnode*& vnode, struct vnode* fallBack, bool lockRootLock) argument
1872 disconnect_mount_or_vnode_fds(struct fs_mount* mount, struct vnode* vnodeToDisconnect) argument
2795 get_new_fd(int type, struct fs_mount* mount, struct vnode* vnode, void* cookie, int openMode, bool kernel) argument
2972 _dump_mount(struct fs_mount* mount) argument
3155 struct fs_mount* mount = (fs_mount*)hash_lookup(sMountsTable, (void*)&id); local
3182 struct fs_mount* mount; local
3979 struct fs_mount* mount = find_mount(mountID); local
3994 struct fs_mount* mount = find_mount(mountID); local
4995 struct fs_mount* mount = find_mount(mountID); local
6785 struct fs_mount* mount; local
6824 struct fs_mount* mount = descriptor->u.mount; local
6838 struct fs_mount* mount = descriptor->u.mount; local
6851 struct fs_mount* mount = descriptor->u.mount; local
6865 struct fs_mount* mount = descriptor->u.mount; local
6881 struct fs_mount* mount; local
6935 struct fs_mount* mount; local
6959 struct fs_mount* mount; local
6986 struct fs_mount* mount; local
7027 struct fs_mount* mount = descriptor->u.mount; local
7041 struct fs_mount* mount = descriptor->u.mount; local
7054 struct fs_mount* mount = descriptor->u.mount; local
7068 struct fs_mount* mount = descriptor->u.mount; local
7084 struct ::fs_mount* mount; local
7408 struct fs_mount* mount; local
7630 struct fs_mount* mount; local
7711 struct fs_mount* mount; local
7749 struct fs_mount* mount; local
7767 struct fs_mount* mount = NULL; local
[all...]
H A DVnode.h29 struct fs_mount* mount; member in struct:vnode
/haiku-fatelf/src/bin/
H A Ddf.cpp32 char mount[B_PATH_NAME_LENGTH]; local
33 mount[0] = '\0';
40 strlcpy(mount, path.Path(), sizeof(mount));
42 strlcpy(mount, "?", sizeof(mount));
46 printf(" Mounted at: %s\n", mount);
48 printf("%-15s ", mount);
49 if (strlen(mount) > 15)
H A Dmountvolume.cpp53 " -all - mount all mountable volumes\n"
54 " -allbfs - mount all mountable BFS volumes\n"
55 " -allhfs - mount all mountable HFS volumes\n"
56 " -alldos - mount all mountable DOS volumes\n"
57 " -ro, -readonly - mount volumes read-only\n"
147 // check whether to mount
148 bool mount = false; local
152 mount = true;
156 mount = true;
159 mount
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/ufs_mount/
H A Dufs_mount.cpp11 "Usage: ufs_mount <file system> <device> <mount point> [ <parameters> ]\n"
34 // get prepare the parameters for the mount() call
40 // mount
42 printf("mount('userlandfs', '%s', '%s', %lu, '%s', %ld)\n", mountPoint, device,
44 if (mount("userlandfs", mountPoint, device, flags,
/haiku-fatelf/src/bin/network/mount_nfs/
H A Dmount_nfs.cpp14 int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parameters, size_t len) function
108 int result=mount ("nfs",argv[2],NULL,0,buf,strlen(buf));
109 //int result=mount ("nfs",argv[2],NULL,0,&params,sizeof(params));
115 printf ("mount failed (%s)\n",strerror(result));
/haiku-fatelf/src/system/libroot/os/arch/x86/
H A Dcompatibility.c27 int mount(const char *filesystem, const char *where, const char *device, ulong flags,
109 mount(const char *filesystem, const char *where, const char *device, ulong flags, function
/haiku-fatelf/3rdparty/mmu_man/scripts/
H A Dbootstrap-haiku.sh58 mount -ro "$PWD/haiku-nightly.image" "$LOOPVOL" || error "mount"
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dkernel.c111 vnode * mount; member in struct:nspace
204 static int is_root(vnode *root, vnode **mount);
205 static int is_mount_vnode(vnode *mount, vnode **root);
206 static int is_mount_vnid(nspace_id nsid, vnode_id vnid, vnode_id *mount);
352 kprintf("root 0x%x mount 0x%x prev 0x%x next 0x%x\n", ns->root, ns->mount,
515 set max # of file systems and mount points.
516 with 8MB, up to 32 fs and 64 mount points.
547 mount the root file system
559 ns->mount
1916 vnode *mount; local
2026 vnode *root, *vn, *mount; local
2988 is_mount_vnode(vnode *mount, vnode **root) argument
3003 is_mount_vnid(nspace_id nsid, vnode_id vnid, vnode_id *mount) argument
3021 is_root(vnode *root, vnode **mount) argument
3416 struct nspace *mount; local
[all...]
/haiku-fatelf/headers/private/kernel/fs/
H A Dfd.h51 struct fs_mount *mount; member in union:file_descriptor::__anon1075
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmountlist.c47 # include <sys/mount.h>
75 # include <sys/mount.h>
83 # include <sys/mount.h>
303 meaning for "dev=" mount options, so don't trust the meaning
491 (fs type, total blocks, free blocks etc.), but without the mount
494 The directory name of the mount point is often, but not always,
H A Dfsusage.c38 # include <sys/mount.h>
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dmountlist.c47 # include <sys/mount.h>
75 # include <sys/mount.h>
83 # include <sys/mount.h>
308 meaning for "dev=" mount options, so don't trust the meaning
495 (fs type, total blocks, free blocks etc.), but without the mount
498 The directory name of the mount point is often, but not always,
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dvolume.h40 #include <sys/mount.h>
61 #define MS_FORENSIC 0x04000000 /* No modification during mount */
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelFileSystem.cpp88 fCapabilities.Set(FS_CAPABILITY_MOUNT, fFSOps->mount);
H A DBeOSKernelVolume.cpp80 if (!fFSOps->mount)
84 status_t error = fFSOps->mount(GetID(), device, flags, (void*)parameters,
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/mounthost/
H A Dmounthost.cpp83 printf("The specified mount path does not exist.\n");
160 result = mount("beserved_client", folder, NULL, 0, &params, sizeof(params));
164 printf ("Could not mount remote file share (%s).\n", strerror(errno));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/server/
H A DKernelUserVolume.cpp27 if (!fFSOps->mount)
29 return fFSOps->mount(GetID(), device, flags, (void*)parameters, len,
/haiku-fatelf/headers/private/userlandfs/legacy/
H A Dfsproto.h198 op_mount (*mount); member in struct:vnode_ops
/haiku-fatelf/src/add-ons/kernel/file_systems/googlefs/
H A Dfsproto.h194 op_mount (*mount); member in struct:vnode_ops
/haiku-fatelf/src/add-ons/kernel/file_systems/nfs/
H A Dfsproto.h191 op_mount (*mount); member in struct:vnode_ops

Completed in 658 milliseconds

12