Home
last modified time | relevance | path

Searched refs:file_status (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/compile/mclinker/lib/Support/
H A DFileSystem.cpp17 mcld::sys::fs::FileStatus file_status; in exists() local
18 mcld::sys::fs::detail::status(pPath, file_status); in exists()
19 return (file_status.type() != mcld::sys::fs::StatusError) && in exists()
20 (file_status.type() != mcld::sys::fs::FileNotFound); in exists()
24 FileStatus file_status; in is_directory() local
25 detail::status(pPath, file_status); in is_directory()
26 return (file_status.type() == mcld::sys::fs::DirectoryFile); in is_directory()
/aosp12/hardware/interfaces/automotive/can/1.0/default/libc++fs/src/filesystem/
H A Doperations.cpp329 file_status m_status;
357 file_status refresh_status(error_code& ec);
369 other.m_status = file_status{}; in FileDescriptor()
394 return file_status(file_type::not_found); in create_file_status()
398 return file_status(file_type::none); in create_file_status()
402 file_status fs_tmp; in create_file_status()
473 m_status = file_status{}; in refresh_status()
570 const file_status f = sym_status || sym_status2 in __copy()
1124 const file_status st = __symlink_status(p, &ec); in remove_all_impl()
1214 file_status st = detail::posix_stat(p, &m_ec); in __temp_directory_path()
[all …]
H A Ddirectory_iterator.cpp361 file_status st(curr_it.__entry_.__get_sym_ft(&m_ec)); in __try_recursion()
367 file_status st(curr_it.__entry_.__get_ft(&m_ec)); in __try_recursion()
/aosp12/hardware/interfaces/automotive/can/1.0/default/libc++fs/include/automotive/
H A Dfilesystem60 class file_status;
128 bool exists(file_status s) noexcept;
156 bool is_fifo(file_status s) noexcept;
214 file_status status(const path& p);
540 class _LIBCPP_TYPE_VIS file_status {
544 file_status() noexcept : file_status(file_type::none) {}
550 file_status(const file_status&) noexcept = default;
551 file_status(file_status&&) noexcept = default;
554 ~file_status() {}
556 file_status& operator=(const file_status&) noexcept = default;
[all …]
/aosp12/system/apex/apexd/
H A Dapex_shim.cpp135 fs::file_status status = iter->status(ec); in ValidateShimApex()