Lines Matching defs:DebugPath
436 SmallString<16> DebugPath = OrigDir;
438 llvm::sys::path::append(DebugPath, DebuglinkName);
439 if (checkFileCRC(DebugPath, CRCHash)) {
440 Result = std::string(DebugPath);
444 DebugPath = OrigDir;
445 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName);
446 if (checkFileCRC(DebugPath, CRCHash)) {
447 Result = std::string(DebugPath);
456 DebugPath = Opts.FallbackDebugPath;
460 DebugPath = "/usr/libdata/debug";
463 DebugPath = "/usr/lib/debug";
466 llvm::sys::path::append(DebugPath, llvm::sys::path::relative_path(OrigDir),
468 if (checkFileCRC(DebugPath, CRCHash)) {
469 Result = std::string(DebugPath);