Home
last modified time | relevance | path

Searched refs:filesystem (Results 1 – 25 of 246) sorted by relevance

12345678910

/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdTsSymbolMap.inc1 // These are derived from N4100[fs.filesystem.synopsis], final draft for
2 // experimental filesystem.
3 SYMBOL(absolute, std::experimental::filesystem::, <experimental/filesystem>)
4 SYMBOL(canonical, std::experimental::filesystem::, <experimental/filesystem>)
5 SYMBOL(copy, std::experimental::filesystem::, <experimental/filesystem>)
6 SYMBOL(copy_file, std::experimental::filesystem::, <experimental/filesystem>)
7 SYMBOL(copy_options, std::experimental::filesystem::, <experimental/filesystem>)
8 SYMBOL(copy_symlink, std::experimental::filesystem::, <experimental/filesystem>)
9 SYMBOL(create_directories, std::experimental::filesystem::, <experimental/filesystem>)
10 SYMBOL(create_directory, std::experimental::filesystem::, <experimental/filesystem>)
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfilesystem.cppm
H A Dfilesystem.inc10 export namespace std::filesystem {
12 using std::filesystem::path;
15 using std::filesystem::hash_value;
16 using std::filesystem::swap;
18 // [fs.class.filesystem.error], filesystem errors
19 using std::filesystem::filesystem_error;
23 using std::filesystem::directory_entry;
26 using std::filesystem::directory_iterator;
29 using std::filesystem::begin;
30 using std::filesystem::end;
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_share/
H A Dzfs_share_concurrent_shares.ksh84 typeset filesystem=$1
85 typeset mntp=$(get_prop mountpoint $filesystem)
88 sub_fail "File system $filesystem is already shared."
90 zfs set sharenfs=on $filesystem || \
91 sub_fail "zfs set sharenfs=on $filesystem failed."
104 sub_fail "File system $filesystem is not shared (set sharenfs)."
113 zfs unshare $filesystem || \
114 sub_fail "zfs unshare $filesystem failed."
116 sub_fail "File system $filesystem is still shared."
119 zfs share $filesystem || \
[all …]
H A Dzfs_share_001_pos.ksh78 typeset filesystem=$2
81 log_fail "File system $filesystem is already shared."
83 log_must zfs set sharenfs=on $filesystem
85 log_fail "File system $filesystem is not shared (set sharenfs)."
90 log_must zfs unshare $filesystem
92 log_fail "File system $filesystem is still shared."
94 log_must zfs share $filesystem
96 log_fail "file system $filesystem is not shared (zfs share)."
99 log_mustnot zfs share $filesystem
H A Dzfs_share_003_pos.ksh67 typeset filesystem=$2
70 log_fail "File system $filesystem is already shared."
73 log_must zfs set sharenfs=off $filesystem
75 log_fail "File system $filesystem is still shared (set sharenfs)."
78 zfs share $filesystem
81 log_fail "'zfs share $filesystem' " \
85 log_fail "file system $filesystem is shared (zfs share)."
H A Dzfs_share_004_pos.ksh58 typeset filesystem=$2
61 log_fail "File system $filesystem is already shared."
63 log_must zfs set sharenfs=on $filesystem
65 log_fail "File system $filesystem is not shared (set sharenfs)."
71 log_must zfs unshare $filesystem
72 log_must zfs share $filesystem
75 log_fail "file system $filesystem is not shared (zfs share)."
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_share/
H A Dzfs_share_001_pos.ksh95 typeset filesystem=$2
98 log_fail "File system $filesystem is already shared."
100 log_must $ZFS set sharenfs=on $filesystem
102 log_fail "File system $filesystem is not shared (set sharenfs)."
107 log_must $ZFS unshare $filesystem
109 log_fail "File system $filesystem is still shared."
111 log_must $ZFS share $filesystem
113 log_fail "file system $filesystem is not shared (zfs share)."
116 log_mustnot $ZFS share $filesystem
H A Dzfs_share_003_pos.ksh85 typeset filesystem=$2
88 log_fail "File system $filesystem is already shared."
91 log_must $ZFS set sharenfs=off $filesystem
93 log_fail "File system $filesystem is still shared (set sharenfs)."
96 $ZFS share $filesystem
99 log_fail "'$ZFS share $filesystem' " \
103 log_fail "file system $filesystem is shared (zfs share)."
H A Dzfs_share_004_pos.ksh76 typeset filesystem=$2
79 log_fail "File system $filesystem is already shared."
81 log_must $ZFS set sharenfs=on $filesystem
83 log_fail "File system $filesystem is not shared (set sharenfs)."
89 log_must $ZFS unshare $filesystem
90 log_must $ZFS share $filesystem
93 log_fail "file system $filesystem is not shared (zfs share)."
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_unshare/
H A Dzfs_unshare_001_pos.ksh76 typeset filesystem=$2
79 prop_value=$(get_prop "sharenfs" $filesystem)
84 log_must zfs set sharenfs=on $filesystem
87 "file system $filesystem shared."
90 is_shared $mntp || log_must zfs share $filesystem
95 log_must zfs unshare $filesystem
98 log_must zfs share $filesystem
104 log_mustnot zfs unshare $filesystem
H A Dzfs_unshare_003_pos.ksh59 typeset filesystem=$2
62 prop_value=$(get_prop "sharenfs" $filesystem)
66 log_must zfs set sharenfs=on $filesystem
69 log_must zfs set sharenfs=off $filesystem
72 log_fail "File system $filesystem is shared (set sharenfs)."
H A Dzfs_unshare_002_pos.ksh78 typeset filesystem=$2
80 log_must zfs set sharenfs=off $filesystem
83 "filesystem $filesystem unshared."
91 log_mustnot zfs unshare $filesystem
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_unshare/
H A Dzfs_unshare_001_pos.ksh97 typeset filesystem=$2
100 prop_value=$(get_prop "sharenfs" $filesystem)
105 log_must $ZFS set sharenfs=on $filesystem
108 "file system $filesystem shared."
112 log_must $ZFS share $filesystem
117 log_must $ZFS unshare $filesystem
121 log_must $ZFS share $filesystem
128 log_mustnot $ZFS unshare $filesystem
H A Dzfs_unshare_003_pos.ksh78 typeset filesystem=$2
81 prop_value=$(get_prop "sharenfs" $filesystem)
86 log_must $ZFS set sharenfs=on $filesystem
89 log_must $ZFS set sharenfs=off $filesystem
92 log_fail "File system $filesystem is shared (set sharenfs)."
H A Dzfs_unshare_002_pos.ksh95 typeset filesystem=$2
97 log_must $ZFS set sharenfs=off $filesystem
99 log_fail "'zfs set sharenfs=off' fails to make ZFS filesystem $filesystem unshared."
107 log_mustnot $ZFS unshare $filesystem
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Ddirectory_entry.h46 typedef filesystem::path _Path;
96 _LIBCPP_HIDE_FROM_ABI bool exists() const { return filesystem::exists(file_status{__get_ft()}); } in exists()
99 return filesystem::exists(file_status{__get_ft(&__ec)}); in exists()
124 …_LIBCPP_HIDE_FROM_ABI bool is_other() const { return filesystem::is_other(file_status{__get_ft()})… in is_other()
127 return filesystem::is_other(file_status{__get_ft(&__ec)}); in is_other()
289 filesystem::__throw_filesystem_error(__msg, __p_, __ec);
314 if (__ec && !filesystem::exists(__st))
336 if (__ec && !filesystem::exists(__st))
386 return filesystem::__file_size(__p_, __ec);
393 if (filesystem::exists(__st) && !filesystem::is_regular_file(__st)) {
[all …]
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Derror.h100 filesystem::__throw_filesystem_error(what, ec); in report()
102 filesystem::__throw_filesystem_error(what, *p1_, ec); in report()
104 filesystem::__throw_filesystem_error(what, *p1_, *p2_, ec); in report()
118 filesystem::__throw_filesystem_error(what, ec); in report_impl()
120 filesystem::__throw_filesystem_error(what, *p1_, ec); in report_impl()
122 filesystem::__throw_filesystem_error(what, *p1_, *p2_, ec); in report_impl()
/freebsd/sys/ufs/ufs/
H A DREADME.extattr15 requires no underlying format changes in the filesystem. This design
38 filesystem, and the enabling of individual attributes for the file
40 before first use, to start and stop EA service on a filesystem, and to
50 In each case, [path] is used to indicate the mounted filesystem on which
63 number of attributes on the specified filesystem.
66 introduces the possibility of race conditions during filesystem mount, if
75 sub-directory of the filesystem root during the mount operation. If it
76 is found, EA support will be started for the filesystem. UFS will then
82 namespace of the root filesystem, reserving space for attribute data:
89 On the next mount of the root filesystem, the attributes will be
H A DREADME.acls57 to your kernel configuration file and rebuilding. Because of filesystem
63 required extended attributes with the filesystem mount operation. To
69 ACLs in the filesystem root of each filesystem. In these examples,
70 the root filesystem is used; see README.extattr for more details.
77 On the next mount of the root filesystem, the attributes will be
/freebsd/tests/sys/cddl/zfs/tests/snapused/
H A Dsnapused.kshlib58 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset)
69 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset)
123 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset)
149 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset)
160 for child in $($ZFS list -rH -t filesystem,volume,snapshot -o name $dataset)
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapused/
H A Dsnapused.kshlib49 for child in $(zfs list -rH -t filesystem,volume -o name $dataset)
60 for child in $(zfs list -rH -t filesystem,volume -o name $dataset)
114 for child in $(zfs list -rH -t filesystem,volume -o name $dataset)
140 for child in $(zfs list -rH -t filesystem,volume -o name $dataset)
151 for child in $(zfs list -rH -t filesystem,volume,snapshot -o name $dataset)
/freebsd/sys/contrib/openzfs/contrib/initramfs/
H A DREADME.md12 ### Root pool/filesystem
15 kernel command line to boot off a ZFS filesystem.
44 If a dataset is specified, it will be used as the root filesystem. Otherwise,
45 this script will attempt to find a root filesystem automatically (in the
48 Filesystems below the root filesystem will be automatically mounted with no
49 additional configuration necessary. For example, if the root filesystem is
56 and the clone used as the root filesystem. Note:
59 used as the boot filesystem instead.
62 filesystem is mounted manually by the initramfs script.
/freebsd/packages/ufs/
H A Dufs.ucl19 comment = "UFS filesystem support"
22 The Unix File System (UFS) is the standard filesystem used for storing
29 including the dump(8) and restore(8) programs used to manage filesystem
31 utilities used to check the consistency of an existing filesystem after
/freebsd/contrib/llvm-project/libcxx/include/
H A Dfilesystem14 filesystem synopsis
16 namespace std::filesystem {
163 template<> struct hash<filesystem::path>;
177 explicit directory_entry(const filesystem::path& p);
178 directory_entry(const filesystem::path& p, error_code& ec);
184 void assign(const filesystem::path& p);
185 void assign(const filesystem::path& p, error_code& ec);
186 void replace_filename(const filesystem::path& p);
187 void replace_filename(const filesystem::path& p, error_code& ec);
191 const filesystem::path& path() const noexcept;
[all …]

12345678910