Lines Matching refs:DebugPath
422 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
424 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
425 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
426 Result = std::string(DebugPath.str()); in findDebugBinary()
430 DebugPath = OrigDir; in findDebugBinary()
431 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
432 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
433 Result = std::string(DebugPath.str()); in findDebugBinary()
442 DebugPath = Opts.FallbackDebugPath; in findDebugBinary()
446 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
449 DebugPath = "/usr/lib/debug"; in findDebugBinary()
452 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir), in findDebugBinary()
454 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
455 Result = std::string(DebugPath.str()); in findDebugBinary()