Lines Matching refs:path
48 path absolute(const path& __p); in _GLIBCXX_VISIBILITY()
49 path absolute(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
51 path canonical(const path& __p); in _GLIBCXX_VISIBILITY()
52 path canonical(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
55 copy(const path& __from, const path& __to) in _GLIBCXX_VISIBILITY()
59 copy(const path& __from, const path& __to, error_code& __ec) in _GLIBCXX_VISIBILITY()
62 void copy(const path& __from, const path& __to, copy_options __options); in _GLIBCXX_VISIBILITY()
63 void copy(const path& __from, const path& __to, copy_options __options, in _GLIBCXX_VISIBILITY()
67 copy_file(const path& __from, const path& __to) in _GLIBCXX_VISIBILITY()
71 copy_file(const path& __from, const path& __to, error_code& __ec) in _GLIBCXX_VISIBILITY()
74 bool copy_file(const path& __from, const path& __to, copy_options __option); in _GLIBCXX_VISIBILITY()
75 bool copy_file(const path& __from, const path& __to, copy_options __option, in _GLIBCXX_VISIBILITY()
78 void copy_symlink(const path& __existing_symlink, const path& __new_symlink); in _GLIBCXX_VISIBILITY()
79 void copy_symlink(const path& __existing_symlink, const path& __new_symlink, in _GLIBCXX_VISIBILITY()
82 bool create_directories(const path& __p); in _GLIBCXX_VISIBILITY()
83 bool create_directories(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
85 bool create_directory(const path& __p); in _GLIBCXX_VISIBILITY()
86 bool create_directory(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
88 bool create_directory(const path& __p, const path& attributes); in _GLIBCXX_VISIBILITY()
89 bool create_directory(const path& __p, const path& attributes, in _GLIBCXX_VISIBILITY()
92 void create_directory_symlink(const path& __to, const path& __new_symlink); in _GLIBCXX_VISIBILITY()
93 void create_directory_symlink(const path& __to, const path& __new_symlink, in _GLIBCXX_VISIBILITY()
96 void create_hard_link(const path& __to, const path& __new_hard_link); in _GLIBCXX_VISIBILITY()
97 void create_hard_link(const path& __to, const path& __new_hard_link, in _GLIBCXX_VISIBILITY()
100 void create_symlink(const path& __to, const path& __new_symlink); in _GLIBCXX_VISIBILITY()
101 void create_symlink(const path& __to, const path& __new_symlink, in _GLIBCXX_VISIBILITY()
104 path current_path(); in _GLIBCXX_VISIBILITY()
105 path current_path(error_code& __ec); in _GLIBCXX_VISIBILITY()
106 void current_path(const path& __p); in _GLIBCXX_VISIBILITY()
107 void current_path(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
110 equivalent(const path& __p1, const path& __p2); in _GLIBCXX_VISIBILITY()
113 equivalent(const path& __p1, const path& __p2, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
120 exists(const path& __p) in _GLIBCXX_VISIBILITY()
124 exists(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
135 uintmax_t file_size(const path& __p); in _GLIBCXX_VISIBILITY()
136 uintmax_t file_size(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
138 uintmax_t hard_link_count(const path& __p); in _GLIBCXX_VISIBILITY()
139 uintmax_t hard_link_count(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
146 is_block_file(const path& __p) in _GLIBCXX_VISIBILITY()
150 is_block_file(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
158 is_character_file(const path& __p) in _GLIBCXX_VISIBILITY()
162 is_character_file(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
170 is_directory(const path& __p) in _GLIBCXX_VISIBILITY()
174 is_directory(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
177 bool is_empty(const path& __p); in _GLIBCXX_VISIBILITY()
178 bool is_empty(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
185 is_fifo(const path& __p) in _GLIBCXX_VISIBILITY()
189 is_fifo(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
200 is_other(const path& __p) in _GLIBCXX_VISIBILITY()
204 is_other(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
212 is_regular_file(const path& __p) in _GLIBCXX_VISIBILITY()
216 is_regular_file(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
224 is_socket(const path& __p) in _GLIBCXX_VISIBILITY()
228 is_socket(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
236 is_symlink(const path& __p) in _GLIBCXX_VISIBILITY()
240 is_symlink(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
243 file_time_type last_write_time(const path& __p); in _GLIBCXX_VISIBILITY()
244 file_time_type last_write_time(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
245 void last_write_time(const path& __p, file_time_type __new_time); in _GLIBCXX_VISIBILITY()
246 void last_write_time(const path& __p, file_time_type __new_time, in _GLIBCXX_VISIBILITY()
250 permissions(const path& __p, perms __prms, in _GLIBCXX_VISIBILITY()
254 permissions(const path& __p, perms __prms, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
258 permissions(const path& __p, perms __prms, perm_options __opts, in _GLIBCXX_VISIBILITY()
261 inline path proximate(const path& __p, error_code& __ec) in _GLIBCXX_VISIBILITY()
264 path proximate(const path& __p, const path& __base = current_path()); in _GLIBCXX_VISIBILITY()
265 path proximate(const path& __p, const path& __base, error_code& __ec); in _GLIBCXX_VISIBILITY()
267 path read_symlink(const path& __p); in _GLIBCXX_VISIBILITY()
268 path read_symlink(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
270 inline path relative(const path& __p, error_code& __ec) in _GLIBCXX_VISIBILITY()
273 path relative(const path& __p, const path& __base = current_path()); in _GLIBCXX_VISIBILITY()
274 path relative(const path& __p, const path& __base, error_code& __ec); in _GLIBCXX_VISIBILITY()
276 bool remove(const path& __p); in _GLIBCXX_VISIBILITY()
277 bool remove(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
279 uintmax_t remove_all(const path& __p); in _GLIBCXX_VISIBILITY()
280 uintmax_t remove_all(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
282 void rename(const path& __from, const path& __to); in _GLIBCXX_VISIBILITY()
283 void rename(const path& __from, const path& __to, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
285 void resize_file(const path& __p, uintmax_t __size); in _GLIBCXX_VISIBILITY()
286 void resize_file(const path& __p, uintmax_t __size, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
288 space_info space(const path& __p); in _GLIBCXX_VISIBILITY()
289 space_info space(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
291 file_status status(const path& __p); in _GLIBCXX_VISIBILITY()
292 file_status status(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
297 file_status symlink_status(const path& __p); in _GLIBCXX_VISIBILITY()
298 file_status symlink_status(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
300 path temp_directory_path(); in _GLIBCXX_VISIBILITY()
301 path temp_directory_path(error_code& __ec); in _GLIBCXX_VISIBILITY()
303 path weakly_canonical(const path& __p); in _GLIBCXX_VISIBILITY()
304 path weakly_canonical(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()