Searched refs:BundlePath (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | llvm-debuginfo-analyzer.cpp | 56 SmallString<256> BundlePath(InputPath); in expandBundle() local 58 sys::path::remove_dots(BundlePath); in expandBundle() 60 if (sys::fs::is_directory(BundlePath) && in expandBundle() 61 sys::path::extension(BundlePath) == ".dSYM") { in expandBundle() 63 sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); in expandBundle() 64 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd; in expandBundle()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | MachOObjectFile.cpp | 5354 SmallString<256> BundlePath(Path); in findDsymObjectMembers() local 5356 sys::path::remove_dots(BundlePath); in findDsymObjectMembers() 5357 if (!sys::fs::is_directory(BundlePath) || in findDsymObjectMembers() 5358 sys::path::extension(BundlePath) != ".dSYM") in findDsymObjectMembers() 5360 sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); in findDsymObjectMembers() 5362 auto EC = sys::fs::is_directory(BundlePath, IsDir); in findDsymObjectMembers() 5368 return createFileError(BundlePath, errorCodeToError(EC)); in findDsymObjectMembers() 5371 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd; in findDsymObjectMembers() 5387 return createFileError(BundlePath, errorCodeToError(EC)); in findDsymObjectMembers()
|