Lines Matching refs:DebugPath
238 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()
265 DebugPath = "/usr/lib/debug"; in findDebugBinary()
268 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir), in findDebugBinary()
270 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
271 Result = std::string(DebugPath.str()); in findDebugBinary()