| /freebsd-13.1/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | directory_iterator.cpp | 34 return file_type::block; in get_file_type() 36 return file_type::character; in get_file_type() 38 return file_type::directory; in get_file_type() 40 return file_type::fifo; in get_file_type() 42 return file_type::symlink; in get_file_type() 44 return file_type::regular; in get_file_type() 46 return file_type::socket; in get_file_type() 53 return file_type::none; in get_file_type() 59 return file_type::none; in get_file_type() 81 return file_type::symlink; [all …]
|
| H A D | operations.cpp | 543 return file_status(file_type::not_found); in create_file_status() 547 return file_status(file_type::none); in create_file_status() 554 fs_tmp.type(file_type::symlink); in create_file_status() 556 fs_tmp.type(file_type::regular); in create_file_status() 558 fs_tmp.type(file_type::directory); in create_file_status() 560 fs_tmp.type(file_type::block); in create_file_status() 562 fs_tmp.type(file_type::character); in create_file_status() 564 fs_tmp.type(file_type::fifo); in create_file_status() 566 fs_tmp.type(file_type::socket); in create_file_status() 568 fs_tmp.type(file_type::unknown); in create_file_status()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FileSystem.h | 66 enum class file_type { enum 155 file_type Type = file_type::status_error; 184 file_type type() const { return Type; } in type() 221 void type(file_type v) { Type = v; } in type() 1334 file_type Type = file_type::type_unknown; // Most platforms can provide this. 1340 file_type Type = file_type::type_unknown, 1358 file_type type() const { in type() 1359 if (Type != file_type::type_unknown) in type() 1362 return S ? S->type() : file_type::type_unknown; in type() 1480 file_type type = State->Stack.top()->type(); in increment() [all …]
|
| H A D | VirtualFileSystem.h | 53 llvm::sys::fs::file_type Type = llvm::sys::fs::file_type::status_error; 64 uint64_t Size, llvm::sys::fs::file_type Type, 77 llvm::sys::fs::file_type getType() const { return Type; } in getType() 130 llvm::sys::fs::file_type Type = llvm::sys::fs::file_type::type_unknown; 134 directory_entry(std::string Path, llvm::sys::fs::file_type Type) in directory_entry() 138 llvm::sys::fs::file_type type() const { return Type; } in type() 426 Optional<llvm::sys::fs::file_type> Type, 443 Optional<llvm::sys::fs::file_type> Type = None, 470 Optional<llvm::sys::fs::file_type> Type = None,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | MultiOnDiskHashTable.h | 43 using file_type = typename Info::file_type; 63 file_type File; 66 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries, in OnDiskTable() 74 std::vector<file_type> Files; 90 llvm::TinyPtrVector<file_type> PendingOverrides; 129 llvm::DenseSet<file_type> Files; in removeOverriddenTables() 197 void add(file_type File, storage_type Data, Info InfoObj = Info()) { 208 llvm::SmallVector<file_type, 16> OverriddenFiles;
|
| H A D | ASTReaderInternals.h | 82 using file_type = ModuleFile *; variable 116 file_type ReadFileRef(const unsigned char *&d);
|
| /freebsd-13.1/usr.sbin/etcupdate/ |
| H A D | etcupdate.sh | 113 file_type() function 473 first=`file_type $1/$3` 474 second=`file_type $2/$3` 563 args=`file_type ${2}$dir` 999 dest=`file_type $DESTDIR/$file` 1112 old=`file_type $OLDTREE/$file` 1113 new=`file_type $NEWTREE/$file` 1174 new=`file_type $NEWTREE/$file` 1183 old=`file_type $OLDTREE/$file` 1184 new=`file_type $NEWTREE/$file` [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FileOutputBuffer.cpp | 183 case fs::file_type::directory_file: in create() 185 case fs::file_type::regular_file: in create() 186 case fs::file_type::file_not_found: in create() 187 case fs::file_type::status_error: in create()
|
| H A D | FileCollector.cpp | 143 if (It->type() == sys::fs::file_type::regular_file || in addDirectoryImpl() 144 It->type() == sys::fs::file_type::directory_file || in addDirectoryImpl() 145 It->type() == sys::fs::file_type::symlink_file) { in addDirectoryImpl() 194 if (Stat.type() == sys::fs::file_type::file_not_found) in copyFiles() 205 if (Stat.type() == sys::fs::file_type::directory_file) { in copyFiles()
|
| H A D | VirtualFileSystem.cpp | 61 using llvm::sys::fs::file_type; 107 return isStatusKnown() && Type != file_type::file_not_found; in exists() 181 llvm::sys::fs::file_type::status_error, {}), 704 0, llvm::sys::fs::file_type::directory_file, in InMemoryFileSystem() 761 if (ResolvedType == sys::fs::file_type::directory_file) { in addFile() 917 sys::fs::file_type Type = sys::fs::file_type::type_unknown; in setCurrentEntry() 921 Type = sys::fs::file_type::regular_file; in setCurrentEntry() 924 Type = sys::fs::file_type::directory_file; in setCurrentEntry() 1063 sys::fs::file_type Type = sys::fs::file_type::type_unknown; in incrementImpl() 1068 Type = sys::fs::file_type::directory_file; in incrementImpl() [all …]
|
| H A D | MemoryBuffer.cpp | 399 sys::fs::file_type Type = Status.type(); in getReadWriteFile() 400 if (Type != sys::fs::file_type::regular_file && in getReadWriteFile() 401 Type != sys::fs::file_type::block_file) in getReadWriteFile() 451 sys::fs::file_type Type = Status.type(); in getOpenFileImpl() 452 if (Type != sys::fs::file_type::regular_file && in getOpenFileImpl() 453 Type != sys::fs::file_type::block_file) in getOpenFileImpl()
|
| H A D | Path.cpp | 1074 return status_known(status) && status.type() != file_type::file_not_found; in exists() 1078 return s.type() != file_type::status_error; in status_known() 1081 file_type get_file_type(const Twine &Path, bool Follow) { in get_file_type() 1084 return file_type::status_error; in get_file_type() 1089 return status.type() == file_type::directory_file; in is_directory() 1101 return status.type() == file_type::regular_file; in is_regular_file() 1113 return status.type() == file_type::symlink_file; in is_symlink_file() 1138 void directory_entry::replace_filename(const Twine &Filename, file_type Type, in replace_filename()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | LocateSymbolFileMacOSX.cpp | 193 case file_type::directory_file: // Bundle directory? in LocateMacOSXFilesUsingDebugSymbols() 223 case file_type::fifo_file: // Forget pipes in LocateMacOSXFilesUsingDebugSymbols() 224 case file_type::socket_file: // We can't process socket files in LocateMacOSXFilesUsingDebugSymbols() 225 case file_type::file_not_found: // File doesn't exist... in LocateMacOSXFilesUsingDebugSymbols() 226 case file_type::status_error: in LocateMacOSXFilesUsingDebugSymbols() 229 case file_type::type_unknown: in LocateMacOSXFilesUsingDebugSymbols() 230 case file_type::regular_file: in LocateMacOSXFilesUsingDebugSymbols() 231 case file_type::symlink_file: in LocateMacOSXFilesUsingDebugSymbols() 232 case file_type::block_file: in LocateMacOSXFilesUsingDebugSymbols() 233 case file_type::character_file: in LocateMacOSXFilesUsingDebugSymbols()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | FileSystem.h | 173 void *baton, llvm::sys::fs::file_type file_type, llvm::StringRef); 176 llvm::sys::fs::file_type file_type, llvm::StringRef)>
|
| /freebsd-13.1/crypto/heimdal/appl/ftp/ftpd/ |
| H A D | ls.c | 153 int file_type = 0; in make_fileinfo() local 161 file_type = '/'; in make_fileinfo() 170 file_type = '*'; in make_fileinfo() 174 file_type = '|'; in make_fileinfo() 178 file_type = '@'; in make_fileinfo() 182 file_type = '='; in make_fileinfo() 187 file_type = '%'; in make_fileinfo() 288 if((flags & LS_TYPE) && file_type != 0) { in make_fileinfo() 289 if (asprintf(&file->filename, "%s%c", p, file_type) == -1) in make_fileinfo()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | filesystem | 68 enum class file_type; 539 file_type __ft_; 1975 return __s.type() != file_type::none; 2023 return __s.type() == file_type::block; 2072 return __s.type() == file_type::fifo; 2098 return __s.type() == file_type::socket; 2539 file_type __type_; 2548 __type_ = file_type::none; 2561 case file_type::none: 2563 case file_type::symlink: [all …]
|
| /freebsd-13.1/contrib/diff/lib/ |
| H A D | file-type.c | 33 file_type (struct stat const *st) in file_type() function
|
| H A D | file-type.h | 28 char const *file_type (struct stat const *);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | Platform.cpp | 553 RecurseCopy_Callback(void *baton, llvm::sys::fs::file_type ft, in RecurseCopy_Callback() 559 case fs::file_type::fifo_file: in RecurseCopy_Callback() 560 case fs::file_type::socket_file: in RecurseCopy_Callback() 565 case fs::file_type::directory_file: { in RecurseCopy_Callback() 596 case fs::file_type::symlink_file: { in RecurseCopy_Callback() 618 case fs::file_type::regular_file: { in RecurseCopy_Callback() 705 case fs::file_type::directory_file: { in Install() 724 case fs::file_type::regular_file: in Install() 729 case fs::file_type::symlink_file: { in Install() 736 case fs::file_type::fifo_file: in Install() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Path.inc | 697 static file_type typeForMode(mode_t Mode) { 699 return file_type::directory_file; 701 return file_type::regular_file; 703 return file_type::block_file; 705 return file_type::character_file; 707 return file_type::fifo_file; 709 return file_type::socket_file; 711 return file_type::symlink_file; 712 return file_type::type_unknown; 895 static file_type direntType(dirent* Entry) { [all …]
|
| /freebsd-13.1/crypto/openssh/ |
| H A D | auth.c | 514 int log_missing, char *file_type) in auth_openfile() argument 523 debug("Could not open %s '%s': %s", file_type, file, in auth_openfile() 534 pw->pw_name, file_type, file); in auth_openfile() 547 auth_debug_add("Ignored %s: %s", file_type, line); in auth_openfile()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | PluginManager.cpp | 79 LoadPluginCallback(void *baton, llvm::sys::fs::file_type ft, in LoadPluginCallback() 88 if (ft == fs::file_type::regular_file || ft == fs::file_type::symlink_file || in LoadPluginCallback() 89 ft == fs::file_type::type_unknown) { in LoadPluginCallback() 131 if (ft == fs::file_type::directory_file || in LoadPluginCallback() 132 ft == fs::file_type::symlink_file || ft == fs::file_type::type_unknown) { in LoadPluginCallback()
|
| H A D | Debugger.cpp | 523 LoadPluginCallback(void *baton, llvm::sys::fs::file_type ft, in LoadPluginCallback() 540 if (ft == fs::file_type::regular_file || ft == fs::file_type::symlink_file || in LoadPluginCallback() 541 ft == fs::file_type::type_unknown) { in LoadPluginCallback() 554 } else if (ft == fs::file_type::directory_file || in LoadPluginCallback() 555 ft == fs::file_type::symlink_file || in LoadPluginCallback() 556 ft == fs::file_type::type_unknown) { in LoadPluginCallback()
|
| /freebsd-13.1/contrib/file/magic/Magdir/ |
| H A D | statistics | 43 # https://zenodo.org/search?page=1&size=20&q=&file_type=dta
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| H A D | llvm-dwarfdump.cpp | 601 case sys::fs::file_type::regular_file: in expandBundle() 602 case sys::fs::file_type::symlink_file: in expandBundle() 603 case sys::fs::file_type::type_unknown: in expandBundle()
|