Home
last modified time | relevance | path

Searched refs:BundlePath (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-debuginfo-analyzer/
H A Dllvm-debuginfo-analyzer.cpp56 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()
/openbsd-src/gnu/llvm/llvm/tools/dsymutil/
H A Ddsymutil.cpp143 SmallString<256> BundlePath(Input); in getInputs() local
144 sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); in getInputs()
145 if (!sys::fs::is_directory(BundlePath)) in getInputs()
153 sys::fs::directory_iterator DirIt(BundlePath, EC); in getInputs()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DMachOObjectFile.cpp5332 SmallString<256> BundlePath(Path); in findDsymObjectMembers() local
5334 sys::path::remove_dots(BundlePath); in findDsymObjectMembers()
5335 if (!sys::fs::is_directory(BundlePath) || in findDsymObjectMembers()
5336 sys::path::extension(BundlePath) != ".dSYM") in findDsymObjectMembers()
5338 sys::path::append(BundlePath, "Contents", "Resources", "DWARF"); in findDsymObjectMembers()
5340 auto EC = sys::fs::is_directory(BundlePath, IsDir); in findDsymObjectMembers()
5346 return createFileError(BundlePath, errorCodeToError(EC)); in findDsymObjectMembers()
5349 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd; in findDsymObjectMembers()
5365 return createFileError(BundlePath, errorCodeToError(EC)); in findDsymObjectMembers()