Lines Matching refs:DebugPath
433 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
435 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
436 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
437 Result = std::string(DebugPath); in findDebugBinary()
441 DebugPath = OrigDir; in findDebugBinary()
442 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
443 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
444 Result = std::string(DebugPath); in findDebugBinary()
453 DebugPath = Opts.FallbackDebugPath; in findDebugBinary()
457 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
460 DebugPath = "/usr/lib/debug"; in findDebugBinary()
463 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir), in findDebugBinary()
465 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
466 Result = std::string(DebugPath); in findDebugBinary()