Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp238 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
240 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
241 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
242 Result = std::string(DebugPath.str()); in findDebugBinary()
246 DebugPath = OrigDir; in findDebugBinary()
247 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
248 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
249 Result = std::string(DebugPath.str()); in findDebugBinary()
258 DebugPath = FallbackDebugPath; in findDebugBinary()
262 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
[all …]