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

/barrelfish-master/lib/vfs/
H A Dvfs_fat.c74 #define cluster_for_offset(offset, mount) \
75 ((offset) / ((mount)->block_size * (mount)->cluster_size))
77 #define offset_from_cluster(offset, mount) \
78 ((offset) % ((mount)->block_size * (mount)->cluster_size))
80 #define cluster_to_block(cluster, mount) \
81 ((mount)->clusters_start + (((cluster) - 2) * (mount)->cluster_size))
83 #define cluster_entry_size(mount) \
158 acquire_or_read(struct fat_mount *mount, struct fs_cache *cache, uint32_t idx, uint8_t **data, size_t block, size_t size) argument
191 acquire_block(struct fat_mount *mount, size_t block, uint8_t **data) argument
198 release_block(struct fat_mount *mount, size_t block) argument
204 acquire_cluster(struct fat_mount *mount, uint32_t cluster, uint8_t **data) argument
212 release_cluster(struct fat_mount *mount, uint32_t cluster) argument
225 dirsearch_wipe(struct fat_dirsearch *search, struct fat_mount *mount) argument
245 next_cluster(struct fat_mount *mount, uint32_t cluster, uint32_t *rescluster) argument
325 next_f16_rootdir_block(struct fat_mount *mount, struct fat_dirsearch *search, uint8_t **data) argument
379 next_subdir_block(struct fat_mount *mount, struct fat_dirsearch *search, uint8_t **data) argument
450 read_next_direntry(struct fat_mount *mount, struct fat_dirsearch *search, char dosfn[12], uint16_t lfn_data[LFN_CHAR_COUNT], bool *has_lfn, uint8_t direntry_data[fat_direntry_size]) argument
542 find_path(struct fat_mount *mount, const char *path, uint8_t direntry[fat_direntry_size]) argument
642 openhandle(struct fat_mount *mount, const char *path, struct fat_handle_common *handle) argument
667 struct fat_mount *mount = st; local
715 struct fat_mount *mount = st; local
907 struct fat_mount *mount = st; local
951 struct fat_mount *mount = st; local
1018 struct fat_mount *mount = st; local
1050 struct fat_mount *mount = st; local
1077 struct fat_mount *mount = (struct fat_mount*) st; local
1128 struct fat_mount *mount = calloc(1, sizeof(struct fat_mount)); local
[all...]
H A Dvfs_backends.h18 struct vfs_mount *mount; member in struct:vfs_handle
H A Dvfs.c29 static bool mount_matches(const char *mount, const char *path, size_t *matchlen) argument
34 assert(mount != NULL && mount[0] == VFS_PATH_SEP);
37 while (mount[len] != '\0' && mount[len] == path[len]) {
41 if (mount[len] == '\0' &&
52 /// return mount, and pointer (within input string) to relative path
81 * \param mountpoint Fully-qualified absolute path to the mount-point
82 * Must be a directory in the existing VFS which is not already a mount-point
84 * \param uri URI of source file system to mount
[all...]
/barrelfish-master/include/sys/
H A Dmount.h29 * @(#)mount.h 8.21 (Berkeley) 5/20/95
46 * NOTE: When changing statfs structure, mount structure, MNT_* flags or
47 * MNTK_* flags also update DDB show mount command in vfs_subr.c.
73 uint64_t f_flags; /* copy of mount exported flags */
81 uint64_t f_syncwrites; /* count of sync writes since mount */
82 uint64_t f_asyncwrites; /* count of async writes since mount */
83 uint64_t f_syncreads; /* count of sync reads since mount */
84 uint64_t f_asyncreads; /* count of async reads since mount */
113 int f_flags; /* copy of mount exported flags */
114 long f_syncwrites; /* count of sync writes since mount */
157 struct mount { struct
[all...]
/barrelfish-master/lib/libc/gen/
H A Dgetmntinfo.c38 #include <sys/mount.h>
H A Dgetvfsbyname.c37 #include <sys/mount.h>
H A Dstatvfs.c35 #include <sys/mount.h>
H A Dfstab.c38 #include <sys/mount.h>
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Dcrypto.h423 void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
425 int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
H A Dcryptlib.c403 int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
415 void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type, argument
/barrelfish-master/include/openssl/
H A Dcrypto.h423 void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
425 int (*CRYPTO_get_add_lock_callback(void))(int *num,int mount,int type,
/barrelfish-master/lib/libc/sys/
H A DMakefile.inc220 mount.2 \
401 MLINKS+=mount.2 nmount.2 \
402 mount.2 unmount.2
/barrelfish-master/usr/fish/
H A Dfish_common.c503 static int mount(int argc, char *argv[]) function
1135 char *args2[3] = { "mount", "/nfs", "nfs://10.110.4.4/local/nfs" };
1136 return mount(3, args2);
1253 {"mount", mount, "Mount file system"},
/barrelfish-master/doc/015-disk-driver-arch/
H A Dfat.tex93 The mount URI for FAT has the format
H A Dblockdevfs.tex67 blockdevfs can by mounted by issuing \verb+mount mountpoint blockdevfs://+ and
/barrelfish-master/usr/bench/ahci/
H A Dmain.c29 static int mount(const char *path, const char *uri) function
874 printf("%s <mountpoint> <mount uri> <command> <command_args...>\n", progname);
884 // mount
889 // argv[1] mountpoint, argv[2] mount uri
890 if(mount(argv[1], argv[2]))
/barrelfish-master/include/vm/
H A Dvm_pageout.c89 #include <sys/mount.h>
745 struct mount *mp;
H A Dvnode_pager.c62 #include <sys/mount.h>
1340 struct mount *mp;
H A Dvm_object.c74 #include <sys/mount.h>
1003 struct mount *mp;
H A Dvm_mmap.c70 #include <sys/mount.h>
H A Dswap_pager.c85 #include <sys/mount.h>

Completed in 224 milliseconds