Lines Matching refs:DebugPath
178 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
180 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
181 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
182 Result = DebugPath.str(); in findDebugBinary()
186 DebugPath = OrigRealPath; in findDebugBinary()
187 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
188 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
189 Result = DebugPath.str(); in findDebugBinary()
193 DebugPath = "/usr/lib/debug"; in findDebugBinary()
194 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir), in findDebugBinary()
196 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
197 Result = DebugPath.str(); in findDebugBinary()