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

/fuchsia/zircon/system/utest/fs-management/
H A Dfs-management.cpp130 int mountfd = open(mount_path, O_RDONLY | O_DIRECTORY | O_ADMIN); local
131 ASSERT_GT(mountfd, 0, "Couldn't open mount point");
132 ASSERT_EQ(fmount(fd, mountfd, DISK_FORMAT_MINFS, &default_mount_options, launch_stdio_async),
135 ASSERT_EQ(fumount(mountfd), ZX_OK);
138 ASSERT_EQ(close(mountfd), 0, "Couldn't close ex-mount point");
159 int mountfd = open(mount_path, O_RDONLY | O_DIRECTORY | O_ADMIN); local
160 ASSERT_GT(mountfd, 0, "Couldn't open mount point");
165 ASSERT_EQ(fmount(fd, mountfd, DISK_FORMAT_MINFS, &default_mount_options, launch_stdio_async),
168 ASSERT_NE(fumount(mountfd), ZX_OK);
169 ASSERT_EQ(close(mountfd),
263 int mountfd = open(parent_path, O_RDONLY | O_DIRECTORY | O_ADMIN); local
[all...]

Completed in 71 milliseconds