Lines Matching refs:DebugPath
204 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
206 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
207 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
208 Result = DebugPath.str(); in findDebugBinary()
212 DebugPath = OrigDir; in findDebugBinary()
213 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
214 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
215 Result = DebugPath.str(); in findDebugBinary()
224 DebugPath = FallbackDebugPath; in findDebugBinary()
228 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
231 DebugPath = "/usr/lib/debug"; in findDebugBinary()
234 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir), in findDebugBinary()
236 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
237 Result = DebugPath.str(); in findDebugBinary()