Lines Matching refs:DebugPath
275 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
277 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
278 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
279 Result = DebugPath.str(); in findDebugBinary()
283 DebugPath = OrigRealPath; in findDebugBinary()
284 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
285 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
286 Result = DebugPath.str(); in findDebugBinary()
290 DebugPath = "/usr/lib/debug"; in findDebugBinary()
291 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir), in findDebugBinary()
293 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
294 Result = DebugPath.str(); in findDebugBinary()