Home
last modified time | relevance | path

Searched refs:not_a_directory (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrc.h67 not_a_directory = int(std::errc::not_a_directory), enumerator
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DDirectoryScanner.cpp43 std::error_code ec = std::make_error_code(std::errc::not_a_directory); in scanForUnwrappedLibraries()
176 std::error_code ec = std::make_error_code(std::errc::not_a_directory); in scanSubFrameworksDirectory()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DFileSystemStatCache.cpp96 std::errc::is_a_directory : std::errc::not_a_directory); in get()
/freebsd/contrib/llvm-project/libcxx/include/__system_error/
H A Derrc.h217 not_a_directory = ENOTDIR, in _LIBCPP_DECLARE_STRONG_ENUM()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__system_error/
H A Derrc.h213 not_a_directory = ENOTDIR, in _LIBCPP_DECLARE_STRONG_ENUM()
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp503 return err.report(errc::not_a_directory); in __create_directories()
536 return err.report(errc::not_a_directory, "the specified attribute path is invalid"); in __create_directory()
939 …if (ec == errc::not_a_directory || ec == errc::too_many_symbolic_link_levels || ec == errc::too_ma… in remove_all_impl()
1040 … return err.report(errc::not_a_directory, "path " PATH_CSTR_FMT " is not a directory", p.c_str()); in __temp_directory_path()
H A Dfile_descriptor.h204 if (m_ec && (m_ec == errc::no_such_file_or_directory || m_ec == errc::not_a_directory)) { in create_file_status()
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Ddirectory_entry.h279 return !__ec || __ec == errc::no_such_file_or_directory || __ec == errc::not_a_directory; in __is_dne_error()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp370 return std::make_error_code(std::errc::not_a_directory); in setCurrentWorkingDirectory()
1169 EC = make_error_code(llvm::errc::not_a_directory); in dir_begin()
1469 EC = errc::not_a_directory; in dir_begin()
2359 return make_error_code(llvm::errc::not_a_directory); in lookupPathImpl()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp458 EC != llvm::errc::is_a_directory && EC != llvm::errc::not_a_directory) { in getFileAndSuggestModule()