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

12

/fuchsia/zircon/system/uapp/fs-mount/
H A Drules.mk12 MODULE_NAME := mount
H A Dmain.c16 #include <fs-management/mount.h>
23 fprintf(stderr, "usage: mount [ <option>* ] devicepath mountpath\n"
93 zx_status_t status = mount(fd, mountpath, df, &options, launch_logs_async);
/fuchsia/zircon/system/uapp/fs-umount/
H A Dmain.c16 #include <fs-management/mount.h>
/fuchsia/zircon/system/ulib/fs-management/
H A Drules.mk16 $(LOCAL_DIR)/mount.cpp \
H A Dfsck.cpp5 #include <fs-management/mount.h>
H A Dmkfs.cpp5 #include <fs-management/mount.h>
H A Dmount.cpp5 #include <fs-management/mount.h>
61 // The mount point is either a path (to be created) or an existing fd.
119 // Open the parent path as O_ADMIN, and sent the mkdir+mount command
210 argv[argc++] = "mount";
233 "mount",
336 zx_status_t mount(int device_fd, const char* mount_path, disk_format_t df, function
H A Dlaunch.cpp15 #include <fs-management/mount.h>
H A Dfvm.cpp5 #include <fs-management/mount.h>
/fuchsia/zircon/third_party/ulib/musl/include/sys/
H A Dmount.h64 int mount(const char*, const char*, const char*, unsigned long, const void*);
/fuchsia/zircon/system/core/devmgr/
H A Dblock-watcher.cpp11 #include <fs-management/mount.h>
293 * Attempt to mount the device pointed to be the file descriptor at a known
298 * attempt to mount is made, without checking mount success.
336 zx_status_t st = mount(fd, "/fs" PATH_SYSTEM, DISK_FORMAT_MINFS, options, launch_minfs);
338 printf("devmgr: failed to mount %s: %s.\n", PATH_SYSTEM, zx_status_get_string(st));
351 zx_status_t st = mount(fd, "/fs" PATH_DATA, DISK_FORMAT_MINFS, options, launch_minfs);
353 printf("devmgr: failed to mount %s: %s.\n", PATH_DATA, zx_status_get_string(st));
365 zx_status_t st = mount(fd, "/fs" PATH_INSTALL, DISK_FORMAT_MINFS, options, launch_minfs);
367 printf("devmgr: failed to mount
[all...]
H A Ddevmgr-fdio.cpp43 const char* mount; member in struct:__anon142
106 nametable[count] = FSTAB[n].mount;
/fuchsia/zircon/system/utest/fs/
H A Dfilesystems.h12 #include <fs-management/mount.h>
23 int (*mount)(const char* disk_path, const char* mount_path); member in struct:fs_info
H A Dmisc.c78 ASSERT_EQ(test_info->mount(test_disk_path, kMountPath), 0, "");
H A Dfilesystems.cpp17 #include <fs-management/mount.h>
26 const char* kMountPath = "/fs-test-tmp/mount";
68 fprintf(stderr, "Could not create mount point for test filesystem\n");
136 if (test_info->mount(test_disk_path, kMountPath)) {
281 // fd consumed by mount. By default, mount waits until the filesystem is
284 if ((status = mount(fd, mount_path, fs_type, &default_mount_options,
286 fprintf(stderr, "Could not mount %s filesystem\n",
/fuchsia/zircon/system/uapp/fs-fsck/
H A Dmain.c15 #include <fs-management/mount.h>
/fuchsia/zircon/system/utest/fs-test-utils/
H A Dunittest_test.cpp12 #include <fs-management/mount.h>
/fuchsia/zircon/system/utest/fs-management/
H A Dfs-management.cpp30 #include <fs-management/mount.h>
74 ASSERT_EQ(mount(fd, mount_path, DISK_FORMAT_MINFS, &default_mount_options, launch_stdio_async),
108 ASSERT_EQ(mount(fd, mount_path, DISK_FORMAT_MINFS, &options, launch_stdio_async), ZX_OK);
131 ASSERT_GT(mountfd, 0, "Couldn't open mount point");
138 ASSERT_EQ(close(mountfd), 0, "Couldn't close ex-mount point");
143 // All "parent" filesystems attempt to mount a MinFS ramdisk under malicious
160 ASSERT_GT(mountfd, 0, "Couldn't open mount point");
164 // The directory was unlinked! We can't mount now!
169 ASSERT_EQ(close(mountfd), 0, "Couldn't close unlinked not-mount point");
171 // Re-acquire the ramdisk mount poin
[all...]
/fuchsia/zircon/system/uapp/fs-mkfs/
H A Dmain.c16 #include <fs-management/mount.h>
/fuchsia/zircon/system/ulib/fs-test-utils/include/fs-test-utils/
H A Dfixture.h14 #include <fs-management/mount.h>
85 // Type of filesystem to mount.
/fuchsia/zircon/system/ulib/fs/
H A Drules.mk24 $(LOCAL_DIR)/mount.cpp \
/fuchsia/zircon/system/ulib/fs-management/include/fs-management/
H A Dmount.h132 // - A path on which to mount the filesystem
136 // Prepare the argv arguments to the filesystem process, mount a handle on the
142 zx_status_t mount(int device_fd, const char* mount_path, disk_format_t df,
/fuchsia/zircon/system/host/fvm/include/fvm/
H A Dformat.h14 #include <fs-management/mount.h>
/fuchsia/zircon/system/utest/fs-bench/
H A Dfs-bench.cpp15 #include <fs-management/mount.h>
/fuchsia/zircon/system/ulib/fs-test-utils/
H A Dfixture.cpp36 // Path where to mount the filesystem.
252 zx_status_t result = mount(fd.release(), fs_path_.c_str(), format,
255 LOG_ERROR(result, "Failed to mount device at %s.\nblock_device_path:%s\n",

Completed in 71 milliseconds

12